iPhone 新 Facebbok SDK 。张贴到墙上不来
我的代码在模拟器中成功运行(即使是在实施新的 Facebook SDK 后)。
但是当我签入设备时,代码正在运行,
但“发布到墙”没有出现。
请帮忙。
My Code is successfully running in Simulator(evn after implementing New Facebook SDK).
But when i checked in device, Code is running,
but Post To Wall not coming.
Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我也遇到这个问题并解决了
如果使用正在使用方法:
[NSURLConnection sendSynchronousRequest:请求返回响应:&响应错误:&err];"
在 FbGraph.m 文件中。
然后在调用此方法之前将以下变量声明为 nil
NSURLResponse *响应 = nil;
NSError *err =nil;
I also had this problem and solved it,
If use are using method:
[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&err];"
in FbGraph.m file.
then Before calling this method declare the following variables as nil
NSURLResponse *response = nil;
NSError *err =nil;