AndrewMcc
9p6 comments posted · 0 followers · following 1
16 years ago @ blog.mugunthkumar.com - iPhone Tutorial – In... · 7 replies · +1 points
It looks like I'm not the only one with this problem.
http://episteme.arstechnica.com/eve/forums/a/tpc/...
The guys on this page describe similiar issue.
Below is the output from the NSLog statements I added.
2009-10-23 21:40:32.542 mobirock[5636:207] Buy Feature A Clicked
2009-10-23 21:40:32.545 mobirock[5636:207] sharedManager Called
2009-10-23 21:40:32.548 mobirock[5636:207] buyFeature Called com.rockvideomobile.mobiRockVideo.mobirock_30day
2009-10-23 21:40:32.550 mobirock[5636:207] SKPaymentQueue canMakePayments is True
2009-10-23 21:40:32.551 mobirock[5636:207] featureId=com.rockvideomobile.mobiRockVideo.mobirock_30day
2009-10-23 21:40:35.581 mobirock[5636:207] SKPayment Transaction Failed
2009-10-23 21:40:35.582 mobirock[5636:207] failedTransaction- transaction.error.code = (null)
2009-10-23 21:40:35.585 mobirock[5636:207] transaction:<SKPaymentTransaction: 0x136480>
2009-10-23 21:40:35.589 mobirock[5636:207] transaction.payment=<SKPayment: 0x11fe00>
2009-10-23 21:40:35.592 mobirock[5636:207] transaction.transactionIdentifier=E13E2AA9-C486-499F-8882-854C3C9F6D74
2009-10-23 21:40:35.596 mobirock[5636:207] transaction.transactionReceipt=(null)
2009-10-23 21:40:35.599 mobirock[5636:207] transaction.transactionDate=(null)
2009-10-23 21:40:35.603 mobirock[5636:207] Error Domain=SKErrorDomain Code=0 UserInfo=0x141580 "Cannot connect to iTunes Store"
16 years ago @ blog.mugunthkumar.com - iPhone Tutorial – In... · 8 replies · +1 points
16 years ago @ blog.mugunthkumar.com - iPhone Tutorial – In... · 0 replies · +1 points
16 years ago @ blog.mugunthkumar.com - iPhone Tutorial – In... · 11 replies · +1 points
16 years ago @ blog.mugunthkumar.com - iPhone Tutorial – In... · 13 replies · +1 points
transaction = <SKPaymentTransaction: 0x1ba0a0>
16 years ago @ blog.mugunthkumar.com - iPhone Tutorial – In... · 1 reply · 0 points
- (void) failedTransaction: (SKPaymentTransaction *)transaction
{
if (transaction.error.code != SKErrorPaymentCancelled)
{
// Optionally, display an error here.
NSLog(@"failedTransaction- Transaction Failed %@",transaction.error.code);
}
[[SKPaymentQueue defaultQueue] finishTransaction: transaction];
}
in "- (void) buyFeature:(NSString*) featureId"
featureId is equal to com.rockvideomobile.mobiRockVideo.mobirock_30day
I can see my two in app products in iTunes Connect. Is it possible I am missing something there and they aren't setup correct?
I did sign out of the App Store in Settings as well and do have a sandbox user setup. But I never even get a message from iTunes.
Help. This is the last part I need to get working and then I can call this project done.