Facebook。停止接收回复
我有这样的问题。我有一个类,在其中我调用 facebook Graph API
[_facebook requestWithMethodName:@"fql.query"
andParams:params
andHttpMethod:@"POST"
andDelegate:self];
和两种接收响应的委托方法:
- (void)request:(FBRequest *)request didLoad:(id)result
- (void)request:(FBRequest *)request didFailWithError:(NSError *)error
我需要这样做,以禁用从 facebook 接收响应。我怎样才能用程序的方式做到这一点。谢谢!
I have such a problem. I have class, in which I make a call to facebook Graph API
[_facebook requestWithMethodName:@"fql.query"
andParams:params
andHttpMethod:@"POST"
andDelegate:self];
and two methods of delegate, that receive responces:
- (void)request:(FBRequest *)request didLoad:(id)result
- (void)request:(FBRequest *)request didFailWithError:(NSError *)error
I need to make that way, to disable receive responces from facebook. How can I make it in a program way. Thanx!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果这是您尝试使用图形 API 的代码,
这不是图形 API。
对于图形 Api:
对于图形 API,请在此处检查:http://developers.facebook.com/docs/reference/api/
并且所有功能的API方法都不同。
If this is the code which you are trying for Graph API
This is not a graph API..
For graph Api:
For Graph API's Check here: http://developers.facebook.com/docs/reference/api/
and the API method is different for all the functions.