我正在为我的 iphone 应用程序使用新的 SDK FACEBOOK API 连接。使用此代码,我的字符串直接发布到墙上,没有任何对话框。
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"test message", @"message",
nil];
[facebook requestWithGraphPath:@"/me/feed" andParams:params andHttpMethod:@"POST" andDelegate:self];
我想在打开对话框登录的用户墙中发布一个简单的字符串,这可能吗?