我有一個應用程序,與parse.com後端工作。 由於今天有一個NSURLErrorDomain代碼= -1003與parse.com只使用蜂窩網絡。 Wifi工作得很好。可能是什麼問題 ?Parse.com NSURLErrorDomain代碼= -1003蜂窩不在wifi
這裏完整的錯誤:
[Error]: Error Domain=NSURLErrorDomain Code=-1003
"A server with the specified hostname could not be found."
UserInfo=0x1700f2200{NSUnderlyingError=0x170245880 "A server with the specified hostname could not be found.",
NSErrorFailingURLStringKey=https://api.parse.com/2/find,
NSErrorFailingURLKey=https://api.parse.com/2/find,
_kCFStreamErrorDomainKey=12,
_kCFStreamErrorCodeKey=8,
NSLocalizedDescription=A server with the specified hostname could
not be found.}
(Code: 100, Version: 1.6.1)
只是出於好奇,你能否通過從你的應用程序通過蜂窩網絡發送NSURLRequest來檢查https://api.parse.com/是否可以訪問?您應該收到404錯誤響應,但重要的部分是連接是否通過。 –
看到我編輯的帖子 – jmcastel