views:

164

answers:

1

Hi, this is my situation:

  1. I have an app of which i want to add in app purchase. I created an update version of the app. I uploaded a binary and rejected.
  2. On the provisioning portal i created an app-id with unique id ( not wildchard * ) like: com.mycompanyname.myappintheoryblablabla
  3. I created a new provisioning profile based on the above app-id
  4. i installed via xcode the prov profile on the development device and set in the app this profile in the field "code signing identity"
  5. On itunes connect i created 2 item for the in app purchase and set ad "clear for sale"
  6. in the application code i implemened the basic calls taken from the Apple sample

what i am getting is ( as stated in the subject ) CANNOT CONNECT TO ITUNES STORE.

Any clue? Can anyone help me?

Regards

A: 

hay Dieffe ur quetion dont have basic info... 1. r u getting call back in below method

 - (void)productsRequest:(SKProductsRequest *)request didReceiveResponse: (SKProductsResponse *)response

{

NSArray *purchasableObjects = [NSArray arrayWithArray:response.products] ;

DEBUGLOG(@"response.products %@ \n,invalidProductIdentifiers %@",response.products ,response.invalidProductIdentifiers);

// populate your UI Controls here

}

if not ur set up of in-app purchase is not good.

jeeva