show/hide this revision's text 2 Fixed code formatting, typos

app id: com.riseuplabs.newapn

product id: com.riseuplabs.newapn.01 and com.riseuplabs.newapn.02

The bundle Id is correct, provioning provisioning profile is correct, product Ids (com.vendor.appname.itemname) com.vendor.appname.itemname) are relative to the bundle Id (com.vendor.appname). com.vendor.appname). In creating the purchase items with unchecked "cleared for sale".

i hv

I have request the product by following code:

SKProductsRequest *request= [[SKProductsRequest alloc] initWithProductIdentifiers: 
                             [NSSet setWithObjects: @"com.riseuplabs.newapn.01",         
                                                @"com.riseuplabs.newapn.02",
                                                @"01", @"02", nil]];
request.delegate = self;
[request start];



- (void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response
{
  NSLog(@"didRecieveResponse");

  NSLog(@"%@",response.products);
  NSLog(@"%@",response.invalidProductIdentifiers);
}

but in response: i I got all my product id are in invalidProductIdentifiers array. plz help me, i am stuck with it since 2 days.

show/hide this revision's text 1

all product identifiers are invalid in my ' in app purchase' application

app id: com.riseuplabs.newapn product id: com.riseuplabs.newapn.01 and com.riseuplabs.newapn.02

The bundle Id is correct, provioning profile is correct, product Ids (com.vendor.appname.itemname) are relative to the bundle Id (com.vendor.appname). In creating the purchase items with unchecked "cleared for sale".

i hv request the product by following code:

SKProductsRequest *request= [[SKProductsRequest alloc] initWithProductIdentifiers: [NSSet setWithObjects: @"com.riseuplabs.newapn.01", @"com.riseuplabs.newapn.02", @"01", @"02", nil]]; request.delegate = self; [request start];

  • (void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response { NSLog(@"didRecieveResponse");

    NSLog(@"%@",response.products); NSLog(@"%@",response.invalidProductIdentifiers); }


but in response: i got all my product id are in invalidProductIdentifiers array. plz help me, i am stuck with it since 2 days.