7
votes

Mode : SandBox
Certificate : Developer certificate
P File: developer provisioning profile

I am planning to integrate IAP so I added sandbox id in iTunesConnect. When I try to execute the code I'm getting below error:

Error Domain=SSErrorDomain Code=109 "Cannot connect to iTunes Store" UserInfo=usrinfo {SSErrorHTTPStatusCodeKey=403, NSLocalizedDescription=Cannot connect to iTunes Store}

1
Thanks for the reply ... mentioned way is not resolving the issue - Mani
you are facing the same issue again - Anbu.Karthik
Yes ... Always calling (void)request:(SKRequest *)request didFailWithError:(NSError *)error delegate - Mani
What code are you using to make the request? - Julian E.

1 Answers

4
votes

The error description includes a useful hint.

SSErrorHTTPStatusCodeKey = 403 

It it error 403. Status code 403 responses are the result of the web server being configured to deny access, for some reason, to the requested resource by the client.

There might be a proxy server or other configuration on the network you're connected to that prevents you from accessing the store. Try using different network and see if the problem persists.