iPhone - Problem with in-app purchases
Posted
by
Satyam svv
on Stack Overflow
See other posts from Stack Overflow
or by Satyam svv
Published on 2011-01-16T12:42:43Z
Indexed on
2011/01/17
7:53 UTC
Read the original article
Hit count: 250
iphone
|in-app-purchase
I've created iPhone app with in-app purchase. Now, I'm in testing phase.
I created provisioning profile com.satyam.testapp In iTunes connected I created the application and uploaded the images, screen shots, desscription etc. I also created two id's for in-app purchase. One is com.satyam.testapp.book1 and the other one is com.satyam.testapp.book5
I created test account also for verifying my in-app purchases.
Using com.stayam.testapp i created developer test profile and using the same in my developed application.
I logged out the itunes app store account in my iphone.
Now i started running my application on my iphone. Its saying that no items are there to purchase. But its not even asking me for credentials where i've to enter test account username and password.....
how to debug it?
Here's my delegate:
- (void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response
{
NSArray *myProduct = [[NSArray alloc] initWithArray:response.products];
for(int i=0;i<[myProduct count];i++)
{
SKProduct *product = [myProduct objectAtIndex:i];
NSLog(@"Name: %@ - Price: %f",[product localizedTitle],[[product price] doubleValue]);
NSLog(@"Product identifier: %@", [product productIdentifier]);
}
for(NSString *invalidProduct in response.invalidProductIdentifiers)
NSLog(@"Problem in iTunes connect configuration for product: %@", invalidProduct);
[request autorelease];
[myProduct release];
}
© Stack Overflow or respective owner