I have configured some products and an in app purchases test account.
I am trying to get the products using the product identifier and the following request:
SKProductsRequest *request= [[SKProductsRequest alloc] initWithProductIdentifiers: [NSSet setWithObject: inappkey]];
request.delegate = self;
[request start];
The problem is that the array of products return empty. And the things is I don't know where to configure my AppId or InApp test account, so it doesn't know what application my products belong.
Where Can I do that?