active questions tagged itunesconnect - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T18:47:51Zhttp://stackoverflow.com/feeds/tag/itunesconnecthttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/319322/is-there-a-programatic-way-to-access-itunesconnect-sales-reports3Is there a programatic way to access iTunesConnect sales reports?Olie2008-11-26T00:01:42Z2009-11-24T23:10:41Z
<p>I've got an app on the iTunes store, and Apple provides daily (and weekly) sales reports. I'd like to download these in an automated fashion (say, via script attached to a cron job), but I'm not sure how to get around all their https-forms, Web-objects controls, session-IDs, etc.</p>
<p>Does anyone have a plug & play solution for this?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1687537/error-while-creating-in-app-purchase-in-itunes-connect0Error while creating in app purchase in itunes connectMW2009-11-06T13:16:49Z2009-11-16T06:23:06Z
<p>Hello everyone</p>
<p>I'm having trouble while creating an In App Purchase in iTunes Connect. I have created a test user and am able to see the form for creating the in app purchase. However, when pressing 'Save' I get the following error message:</p>
<p>"There was an error saving changes. Please try again later. If the problem persists, please contact us."</p>
<p>This error has persisted for about 24 hours now. Have you encountered this problem, and do you know any way to get around it?</p>
<p>Edit 2009-11-10: I just received a response from my email to Apple. It stated that they will start looking into it, and expect to have a solution within three business days. As soon as I hear something new, I'll post it here.</p>
http://stackoverflow.com/questions/1301145/generate-json-object-with-transactionreceipt2Generate JSON object with transactionReceiptCarlos2009-08-19T16:37:51Z2009-11-12T12:43:40Z
<p>Hi, </p>
<p>I've been the past days trying to test my first in-app purchse iphone application. Unfortunately I can't find the way to talk to iTunes server to verify the transactionReceipt.</p>
<p>Because it's my first try with this technology I chose to verify the receipt directly from the iPhone instead using server support. But after trying to send the POST request with a JSON onbject created using the JSON api from google code, itunes always returns a strange response (instead the "status = 0" string I wait for).</p>
<p>Here's the code that I use to verify the receipt:</p>
<pre><code>- (void)recordTransaction:(SKPaymentTransaction *)transaction {
NSString *receiptStr = [[NSString alloc] initWithData:transaction.transactionReceipt encoding:NSUTF8StringEncoding];
NSDictionary *jsonDictionary = [NSDictionary dictionaryWithObjectsAndKeys:@"algo mas",@"receipt-data",nil];
NSString *jsonString = [jsonDictionary JSONRepresentation];
NSLog(@"string to send: %@",jsonString);
NSLog(@"JSON Created");
urlData = [[NSMutableData data] retain];
//NSURL *sandboxStoreURL = [[NSURL alloc] initWithString:@"https://sandbox.itunes.apple.com/verifyReceipt"];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"https://sandbox.itunes.apple.com/verifyReceipt"]];
[request setHTTPMethod:@"POST"];
[request setHTTPBody:[jsonString dataUsingEncoding:NSUTF8StringEncoding]];
NSLog(@"will create connection");
[[NSURLConnection alloc] initWithRequest:request delegate:self];
</code></pre>
<p>}</p>
<p>maybe I'm forgetting something in the request's headers but I think that the problem is in the method I use to create the JSON object. </p>
<p>HEre's how the JSON object looks like before I add it to the HTTPBody :</p>
<pre><code> string to send: {"receipt-data":"{\n\t\"signature\" = \"AUYMbhY
...........
D0gIjEuMCI7Cn0=\";\n\t\"pod\" = \"100\";\n\t\"signing-status\" = \"0\";\n}"}
</code></pre>
<p>The responses I've got: </p>
<blockquote>
<p>complete response {
exception = "java.lang.IllegalArgumentException: Property list parsing failed while attempting to read unquoted string. No allowable characters were found. At line number: 1, column: 0.";
status = 21002;
}</p>
</blockquote>
<p>Thanks a lot for your guidance.</p>
http://stackoverflow.com/questions/673624/bundle-videos-or-download-later0Bundle videos or download later?4thSpace2009-03-23T14:41:10Z2009-11-08T19:44:28Z
<p>I have an application that uses small videos I've created to demonstrate the concepts explained in particular topics. The videos are at least 3MB and I'm unsure of the max but probably 5MB. For v1.0, I'd like to distribute 5 videos. That's ~15MB plus about another meg for the app. Should I distribute the videos through iTunes, where it is likely the user has a faster connection on their computer and the overall experience is better? Is there some size limit that should observe on your .app file?</p>
<p>Or should I put together some sort of on demand scheme? For example, the app can send a code to my website that is used to authenticate. Then the user can download video content via their iPhone. If the user is on wifi or maybe 3G, I guess it is an OK experience. But if all they have is 2G, it will be bad.</p>
<p>v1.1 will include more videos and possibly a redo of an existing video. Each new version can be expected to include more videos.</p>
<p>Just looking for the best way to do this. Any suggestions?</p>
http://stackoverflow.com/questions/1665565/cant-find-manage-in-app-purchases-under-itunes-connect0Cant find “Manage In-App purchases” under itunes connectbugs_bugs2009-11-03T06:22:24Z2009-11-06T12:53:46Z
<p>Hi,</p>
<p>I know i am going to ask something that might sound bit odd, but still asking </p>
<p>I am developing an application that has In App Purchase functionality, i have integrated the code but for testing i need to make a test account under iTunes connect. During R&D i came to know that i have to go through following way to make test account for in app purchase:</p>
<p>iTunes Connect-> “Manage In-App purchases”</p>
<p>My problem is that i am not able to see the option “Manage In-App purchases” under iTunes connect. Any kind of input to this question would be great help.</p>
<p>Thanks in Advance </p>
http://stackoverflow.com/questions/1635530/app-store-submission-developer-reject0App Store submission: Developer rejectsneha2009-10-28T06:44:23Z2009-10-28T07:07:30Z
<p>I have submitted the binary file of my application to apple on appstore.</p>
<p>But i dint configure the APP ID i mean i forgot to do that. Does it will affect my application for apple submission.</p>
<p>Should i do a developer reject and if i do that Can i upload the new binary ..</p>
<p>Please reply me as soon as possible i dont want ma application to get rejected by apple..</p>
http://stackoverflow.com/questions/1630586/am-i-getting-crazy-itunesconnect-rounded-corners0Am I getting crazy? iTunesconnect rounded corners.Sjakelien2009-10-27T12:50:23Z2009-10-27T12:50:23Z
<p>Yesterday, I have submitted an iPhone app to Apple through itunesconnect.apple.com.
It is my second app, so after submission, it appeared as second in a list.
The first in the list was my first app, with the app icon having rounded corners.
My new app, however, had straight corners, just like the icon file that I delivered with the app. (you are supposed to deliver a square icon; apple will do the rounding and the glossy stuff for you.)
Today, I checked if my app was accepted yet (ha! if even). To my surprise, the Upper Two corners of my app were rounded, while the lower ones are square! Also, the shine was added now. See <a href="http://www.tangibility.nl/corners.png" rel="nofollow" title="here">here</a> for a screen shot.
What does this mean?
Is this a progress indicator? If so, what does each corner mean?</p>
http://stackoverflow.com/questions/47941/invalid-iphone-application-binary14Invalid iPhone Application BinaryKristopher Johnson2008-09-06T23:18:22Z2009-10-26T17:12:36Z
<p>I'm trying to upload an application to the iPhone App Store, but I get this error message from iTunes Connect:</p>
<blockquote>
<p>The binary you uploaded was invalid. The signature was invalid, or it was not signed with an Apple submission certificate.</p>
</blockquote>
<p>My guess is that it is not properly signed. I have downloaded my App Store distribution certficate, but I can't figure out how to "sign" my application with it. The SDK's documentation about code signing is not very helpful. (FWIW, I can install the app on my iPhone just fine using the development provisioning profile.)</p>
<p>However, it is possible that I screwed things up on a more basic level. Here's what I did to try to prepare it for upload:</p>
<ol>
<li>In Xcode, select the Device|Release target</li>
<li>Select the target and click the Info button. Change "Code Signing Identity" to "iPhone Distribution", and change "Code Signing Provisioning Profile" to my App Store distribution profile.</li>
<li>Build</li>
<li>Go to the directory where the built MyApp.app bundle is, control-click and choose "Compress" to create MyApp.zip</li>
<li>Upload MyApp.zip to the App Store via iTunes Connect (which resulted in the above error message).</li>
</ol>
<p>Can anybody give me any hints?</p>
<p><strong>Edit:</strong> Found someone with the same problem. Unfortunately, he won't tell us how he fixed it.</p>
<ul>
<li><a href="http://www.rhonabwy.com/wp/2008/07/18/seattlebus-diary-ongoing-update-saga/#comments" rel="nofollow">http://www.rhonabwy.com/wp/2008/07/18/seattlebus-diary-ongoing-update-saga/#comments</a></li>
<li><a href="http://www.rhonabwy.com/wp/2008/07/22/seattlebus-diary-update-is-pending-review/" rel="nofollow">http://www.rhonabwy.com/wp/2008/07/22/seattlebus-diary-update-is-pending-review/</a></li>
</ul>
<p>(Note: For general information on submitting iPhone applications to the App Store, see <a href="http://stackoverflow.com/questions/796482/steps-to-upload-an-iphone-application-to-the-appstore">Steps to upload an iPhone application to the AppStore</a>.)</p>
http://stackoverflow.com/questions/1619172/itunes-connect-api2iTunes Connect APItotocaster2009-10-24T21:22:33Z2009-10-25T01:52:14Z
<p>Does iTunes Connect has an API? How do some applications download financial and sale reports to computer? Are there some C/Objective-C API wrappers?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1568360/iphone-application-enterprise-distribution-process1iPhone Application Enterprise Distribution ProcessJWD2009-10-14T19:10:37Z2009-10-14T20:43:35Z
<p>I have a client that wises to distribute their iphone application to only their employees and not on the iTunes App Store. To me this sounds like a situation for Enterprise Distribution. </p>
<p>Could someone explain to me in as much detail as possible this process. I know we will need to enroll as an Enterprise Distribution Member before any of this can happen, but after that I am not sure how the end-to-end distribution process works.</p>
<p>Really the main question is "How do we 'push' the application to the indvidual's iPhones?" </p>
<p>Thanks in advance. Any help is much appreciated. </p>
http://stackoverflow.com/questions/1543376/if-i-hit-reject-binary-in-itunes-connect-to-submit-an-updated-binary-will-i-lo1If I hit "Reject Binary" in iTunes Connect to submit an updated binary, will I lose my place in line?Jim2009-10-09T12:02:18Z2009-10-09T12:05:31Z
<p>I've submitted an app for the App Store via iTunes Connect, and the status is "In Review." I don't know if that means they actually started looking at it. I suspect it just means that it's been put into a reviewer's queue.</p>
<p>There's a tweak I'd like to add to it before it goes out. However, I don't want to update it if that means that hitting "Reject Binary" automatically sends it to the back of the overall queue again, and it has to wait another 3-4 weeks.</p>
<p>I realize that it's likely that no one knows how this works, but I figure it doesn't hurt to ask.</p>
http://stackoverflow.com/questions/1497547/how-to-create-binary-of-iphone-application0how to create binary of iphone applicationCodeWriter2009-09-30T11:27:00Z2009-09-30T13:12:11Z
<p>hello,</p>
<p>On reading the iTunesConnect_DeveloperGuide.pdf, i came across the term <em>binary</em>. This is the paragraph found in the pdf:</p>
<p><em>To submit your application through iTunes Connect and get it posted on the<br />
App Store successfully, make sure you have the following:
Application binary (includes 57px icon), large 512px icon for use on the App Store,
primary screenshot, contract information, export compliance information and applica-
tion metadata</em> </p>
<p>It is also mentioned that the binary should be a zipped file.</p>
<p>Can anyone please explain what is a binary and how to create one?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1452649/where-is-my-application-binary-in-xcode0Where is my application binary in XCode?AngryHacker2009-09-21T02:44:00Z2009-09-24T01:49:27Z
<p>I've built an app for the iTunes store. However, being a noob to the platform, I can't figure out how to submit the app.</p>
<p>Where is the actual binary that I need to submit to the iTunes store? What folder does it get built in?</p>
http://stackoverflow.com/questions/1370574/submitting-application-update-to-itunesconnect-madness0Submitting application update to iTunesConnect (madness!)jbrennan2009-09-02T22:56:10Z2009-09-03T22:18:52Z
<p>iTunes connect keeps rejecting my binary for an application update and it's driving me mad. Usually I can figure it out but I've tried everything I can think of. Maybe someone can lend a hand :)</p>
<p>The error I'm getting is:</p>
<pre><code>The binary you uploaded was invalid. The signature was invalid, or it was not signed with an Apple submission certificate.
</code></pre>
<p>I am uploading an updated version of my app to the store. The current version is 1.0, this new one is 3.0. Here's what I've tried:</p>
<ul>
<li><p>Zipped the app bundle with the
command line (I've heard the Finder
zip utility can be bad sometimes)</p></li>
<li><p>Checked my app is signed properly
with $> codesign -vv myApp (says
"Valid on disk) </p></li>
<li>Checked in the build
log for the correct provisioning junk
to be there </li>
<li>Made sure in my
Info.plist file the CFBundleVersion
and CFShortBundleVersion are
incremented from my current version</li>
</ul>
<p>That's what I can think of to check so far, and everything looks good as far as I can tell.</p>
<p>Now I've read somewhere in the Portal that says you must sign updates with the same Distribution Cert as before, and I am (I think). However I have to sign with a new provisioning profile because the old one I used for App Store has expired (or something, I don't know it just won't work).</p>
<p>THINGS TO KNOW ABOUT MY SITUATION:
This update is actually a complete re-write from a new template, BUT I've made sure I'm using the exact same App ID (wildcard) and bundle indentifier) so that shouldn't be a problem.</p>
<p>Also, I've switched machines since I last submitted to the App Store but I remembered to export everything (I think) from my old machine. I still have the old one here, with all the same data on it, if that's helpful. I don't think I've forgotten anything).</p>
<p>Thanks in advance for any help :)</p>
<p><strong>UPDATE</strong></p>
<p>So I've decided to try uploading with the Application Loader to see if it will give me any new errors, and it has, it spewed <a href="http://www.pastie.org/pastes/604680" rel="nofollow">this</a> out into the console. Perhaps someone can find something meaningful there.</p>
<p>Also of note, the Portal Guide says Updates must be signed with the original Distribution Provisioning profile as was used to sign the original app. I've tried using that old one, but Xcode won't let me select it, as there's "No matching key pair" or whatever. Is there a way to remedy this? According to Keychain I've got my Distribution Cert and its private key, it all looks valid. I've made sure to try Repairing the Keychain in case, but no change.</p>
http://stackoverflow.com/questions/1135120/if-you-raise-the-price-of-your-iphone-app-do-the-old-users-have-to-pay-to-upgrade0If you raise the price of your iPhone app do the old users have to pay to upgrade?Tim Bowen2009-07-16T02:22:44Z2009-07-16T02:28:42Z
<p>We're considering doing some experimentation with the price point on our iPhone app and I just want to make sure that if we raise the price we won't get a flood of user complaints that apple is charging them the price difference to upgrade. </p>
http://stackoverflow.com/questions/887685/itunesconnect-acces-to-download-stats-for-my-client0iTunesConnect acces to download stats for my clientThierryb2009-05-20T12:44:23Z2009-06-29T12:58:56Z
<p>Hello,</p>
<p>I've developed an app for a client and would like to give him an access to my iTunesConnect in order to access to the download stat for his application.</p>
<p>The problem is that if I create a new user and set permission to only see reports, he will be able to get all stats...</p>
<p>And I don't want to get stats manually each day.</p>
<p>Do you have an idea ?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/937899/scripts-to-parse-and-download-itunes-connect-and-appstore-data2Scripts to parse and download iTunes Connect and AppStore databradhouse2009-06-02T04:31:32Z2009-06-29T12:53:59Z
<p>I'm looking for recommendations of a script or series of scripts that download and parse iTunes Connect sales data and AppStore comments, ratings and rankings data for a defined app.</p>
<p>I'm also aware of solutions like:</p>
<ul>
<li><a href="http://www.ideaswarm.com/products/appviz/" rel="nofollow">AppViz</a></li>
<li><a href="http://code.google.com/p/appsales-mobile/" rel="nofollow">appsales-mobile</a></li>
<li><a href="http://github.com/kasatani/iphone-stats/tree/master" rel="nofollow">iphone-stats</a></li>
<li><a href="http://heartbeatapp.com" rel="nofollow">Heartbeat.app</a>
</li>
</ul>
<p>I'm sure I'll find a few more with more searching. </p>
<p>I can't help but feel there must be a really decent set of open source scripts out there to do this, given how many developers are now writing apps for the AppStore.</p>
<p>Would be interested to hear any commercial offerings as well (although my personal preference is for open source, so I can at least see what it is doing with my iTunes Connect login credentials).</p>
<p>To be clear, I'm really looking for something that hits all of the areas mentioned:</p>
<p><b>App Store</b> (per store)</p>
<ul>
<li>Comments</li>
<li>Ratings</li>
<li>Category/store rankings</li>
</ul>
<p><b>iTunes Connect</b></p>
<ul>
<li>The contents of the sales reports</li>
</ul>
<p>Analysis/graphs of the data is not necessary (but would be a nice to have I guess). I'm not really looking for something like AppSales Mobile above, I would like the raw data so I can do my own analysis and formatting. So far it looks like AppViz (listed above) is the best out there.</p>
<p>Any suggestions on what is good/available or should I just go roll my own?</p>