我一直在使用以下代码为特定的新闻源id添加评论,虽然我已经授权我的应用程序具有所需的所有权限
@"read_stream",@"offline_access",@"publish_stream",@"share_item"
NSMutableDictionary *params1 = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"comment added thorugh iphone", @"message", nil];
[_facebook requestWithMethodName:@"comments/NEWS_ID"
andParams:params1
andHttpMethod:@"POST"
andDelegate:self];
我收到的结果是操作无法完成。 (facebookErrDomain错误3。)
我在这里做错了什么?请帮帮我。
答案 0 :(得分:1)
您可以使用
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"Your Comment Text.", @"text",@"NEWs_FEED_ID", @"object_id",nil];
[_facebook requestWithMethodName:@"comments.add" andParams:params andHttpMethod:@"POST" andDelegate:self];
希望它有所帮助。