iap-hosted-content

can't get In-App-Purchase hosted content to be actually hosted

ぐ巨炮叔叔 提交于 2020-01-04 12:48:29
问题 I have an iPad app with In-App Purchase that used to host its content with Urban Airship (a pox upon their house). Now I'm trying to convert this to use Apple's hosted content. I've created a .pkg file for one of my content items, and used Application Loader (multiple times now) to upload the content. The package passed validation, I clicked "Deliver," and I watched the progress bar as it was "Uploading package to the iTunes Store." In the "Hosted Content" tab for this item, "Host Content

can't get In-App-Purchase hosted content to be actually hosted

一笑奈何 提交于 2020-01-04 12:48:19
问题 I have an iPad app with In-App Purchase that used to host its content with Urban Airship (a pox upon their house). Now I'm trying to convert this to use Apple's hosted content. I've created a .pkg file for one of my content items, and used Application Loader (multiple times now) to upload the content. The package passed validation, I clicked "Deliver," and I watched the progress bar as it was "Uploading package to the iTunes Store." In the "Hosted Content" tab for this item, "Host Content

Downloading iAP Hosted Content gets stucks on SKDownloadStateWaiting for some users

谁说我不能喝 提交于 2019-12-12 16:21:46
问题 Pretty much what the title says. The code works fine for all my development devices in the sandbox environment and for a majority of my users. However, there are some users reporting that the download process doesn't move beyond the waiting state (SKDownloadStateWaiting), even when left through the night. Some do manage to get the download started after a few tries (closing the app completely and going through restore purchases feature), so it does look to be completely random. Here is the

Cannot upload hosted content for In-App purchases to iTunesConnect

十年热恋 提交于 2019-12-10 09:31:54
问题 I am trying to upload hosted content for in-app purchases, however I have been unable to succeed so far. I have previously uploaded around 100 in-app purchases packages for my app using Application Loader. I used to be able to upload these packages before without any issues. Now I’ve noticed that the latest version of Application Loader (Version 3.0) doesn’t even give me the option to upload hosted content (see attached)? So instead I’ve taken the time to use the iTMSTransporter bash script

iOS: How to upload Apple Hosted content to In-app purchase in itunesconnect

允我心安 提交于 2019-12-06 14:14:09
问题 I have Non-Consumable Purchase and want to host it with Apple. It like a book, that contains from images and manages with JSON. How can I upload it? 回答1: What is not clear from Nirav's answer is that to get to the point where you have a valid package, you need to do two additional things after creating the In-App Purchase Content Project in Xcode (i.e. After Xcode -> New Project -> Other -> In-App Purchase) Once you have added your content files, you must Firstly Archive the Project, then

unzip contents in-app purchase ios

痴心易碎 提交于 2019-12-06 11:07:24
问题 apple hosted contents are downloading as .zip in case of in-app purchase. m trying to unzip these contents but filed to open .zip file with zipArchive. ZipArchive* za = [[ZipArchive alloc] init]; za.delegate = self; NSString *path = [download.contentURL path]; if([[NSFileManager defaultManager] fileExistsAtPath:path]) { NSLog(@"File Exists: %@", path); } else { NSLog(@"file not exists: %@", path); } if( [za UnzipOpenFile:path] ) { if( [za UnzipFileTo:dir overWrite:YES] != NO ) { NSLog(@"unzip

Cannot upload hosted content for In-App purchases to iTunesConnect

老子叫甜甜 提交于 2019-12-05 16:08:55
I am trying to upload hosted content for in-app purchases, however I have been unable to succeed so far. I have previously uploaded around 100 in-app purchases packages for my app using Application Loader. I used to be able to upload these packages before without any issues. Now I’ve noticed that the latest version of Application Loader (Version 3.0) doesn’t even give me the option to upload hosted content (see attached)? So instead I’ve taken the time to use the iTMSTransporter bash script instead. However when I try to upload the content packs using: iTMSTransporter -m upload I am getting

unzip contents in-app purchase ios

时光怂恿深爱的人放手 提交于 2019-12-04 17:38:09
apple hosted contents are downloading as .zip in case of in-app purchase. m trying to unzip these contents but filed to open .zip file with zipArchive. ZipArchive* za = [[ZipArchive alloc] init]; za.delegate = self; NSString *path = [download.contentURL path]; if([[NSFileManager defaultManager] fileExistsAtPath:path]) { NSLog(@"File Exists: %@", path); } else { NSLog(@"file not exists: %@", path); } if( [za UnzipOpenFile:path] ) { if( [za UnzipFileTo:dir overWrite:YES] != NO ) { NSLog(@"unzip data success"); //unzip data success //do something } else { NSLog(@"unzip failed"); } [za