我正在尝试使用Facebook
发布到Graph API
朋友的墙上。但不是张贴到我朋友的墙上,而是返回他所有的wall posts
。我已经附上了我在下面使用的代码,并且从搜索其他类似问题看起来我的代码是正确的。
我也已经设置了正确的permissions
(read_stream
& publish_stream
)。有没有人有任何想法?
NSMutableDictionary* params =
[NSMutableDictionary dictionaryWithObjectsAndKeys:@"some test text",
@"message",
@"123456789",
@"target_id",nil];
[self.facebook requestWithGraphPath:[NSString stringWithFormat:@"%@/feed",@"123456789"]
andParams:params
andDelegate:self];
答案 0 :(得分:0)
你这样试试,
[self.facebook requestWithGraphPath:@"123456789/feed"
andParams:params
andHttpMethod:@"POST"
andDelegate:self];
因为看起来,你没有添加方法属性