好的,我一直在尝试让我的 ios 应用程序与 facebook-ios-sdk 一起使用。登录非常顺利,直到我尝试发出 /me 或 /me/friends 等 fb 请求。我收到一个非常莫名其妙的错误:
操作无法完成。(facebookErrDomain 错误 10000。)
我目前正在实现 4 个主要的回调方法:
def request(request, didReceiveResponse:response)
puts "Got it now: #{response.URL.absoluteString}"
end
def request(request, didLoad:result)
puts "Another one: #{result.inspect}"
end
def request(request, didFailWithError:error)
puts "Error: #{error.localizedDescription}"
end
def request(request, didLoadRawResponse:data)
puts "Got raw: #{data}"
end
第二个永远不会被调用。任何帮助将不胜感激。