下面是我的代码
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"MyTestAPP", @"name",
@"http://myserver.com/", @"link",
@"My Post!", @"caption",
@"ValuedCommunity", @"description",
myMessage, @"message",
nil];
// Publish.
[facebook dialog:@"feed" andParams:params andDelegate:self];
现在使用此代码,当我单击发布按钮时,我得到了
我已经使用以下代码尝试了图形 api,但它给了我一个错误消息“ facebookerrdomain error 10000 ”。 [facebook requestWithGraphPath:@"me/feed" andParams:params andHttpMethod:@"POST" andDelegate:self]; 现在我想要做的是,想要设置“myMessage”文本而不是对此说些什么。有可能这样做吗?如果是,那么我该如何实现。请指教谢谢