大家好,我正在尝试使用 Facebook SDK for iOS 来“喜欢”一张图片,我在网上进行了搜索,但我不明白如何实现它,我尝试过:
[[FBRequest requestWithGraphPath:[NSString stringWithFormat:@"%@/likes", idPicture] parameters:nil HTTPMethod:@"POST"]
startWithCompletionHandler:
^(FBRequestConnection *connection,
id result,
NSError *error) {
if(!error) {
}
}];
但它不起作用,你知道其他方法吗?:)