ios - Getting random "facebookErrDomain error 10000" -
i using latest facebook ios sdk, , getting random "facebookerrdomain error 10000"
, when using requestwithgraphpath
. can trigger request ui , runs fine, gives me error.
has ran similar issue?
the error object returned has details what's happening. suggest implement method more infos:
- (void)request:(fbrequest *)request didfailwitherror:(nserror *)error { nslog(@"%@", [error localizeddescription]); nslog(@"err details: %@", [error description]); };
for example problem gived me info, , i've fixed it:
2011-05-27 11:19:57.313 challengein[7704:207] operation couldn’t completed. (facebookerrdomain error 10000.) 2011-05-27 11:19:57.314 challengein[7704:207] err details: error domain=facebookerrdomain code=10000 "the operation couldn’t completed. (facebookerrdomain error 10000.)" userinfo=0x6878b90 {error=<cfbasichash 0x6879be0 [0x141c400]>{type = mutable dict, count = 2, entries => 2 : <cfstring 0x6877f70 [0x141c400]>{contents = "type"} = <cfstring 0x686f9a0 [0x141c400]>{contents = "oauthexception"} 3 : <cfstring 0x686d610 [0x141c400]>{contents = "message"} = <cfstring 0x686f970 [0x141c400]>{contents = "(#100) picture url not formatted"} } }
Comments
Post a Comment