Reputation: 2963
My game app is based on cocos2d-x/iphone and it will request Json or Html from a Django server. Things work fine if I open urls of server request in iPhone Safari browser inside simulator or device and also PC browser, traffic shows up in Charles. But for running the app on ios simulator or iphone device, traffic not found in Charles. Softwares are all of newest version.
Any guy have same problem and give me some clues on it? Thanks.
Upvotes: 0
Views: 911
Reputation: 148
The problem should be your cocos2d-x app use libcurl, and do not set CURLOPT_PROXY option in your code.
Upvotes: 1
Reputation: 3054
You need to configure it properly
All the above information I have copied from Here
Upvotes: 1