如何通过 FBConnect 添加新闻?
我有以下代码:
NSString *newsBody = @"[{\"message\": \"News message\" }]";
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObject:newsBody forKey:@"news"];
[[FBRequest requestWithDelegate:self] call:@"facebook.dashboard.addnews" params:params dataParam:nil];
在我发送请求后,我收到了成功的回复。但我在 facebook 帐户中看不到新消息。
另外,我尝试将完整信息添加到新闻参数(http://wiki.developers.facebook.com/index.php/Dashboard.addNews):
NSString *newsBody = @"[{\"message\": \"News message\",\"action_link\": {\"text\": \"link text\",
\"href\": \"http: //google.com\"} }]";
但是这个请求返回错误。
有任何想法吗?