我正在用 iOS 的快速语言编写 facebook互动代码。我已经转换了登录和其他代码,但坚持使用共享方法。
我无法在swift中找到requestWithGraphPath
类的FBRequest
方法。如果有人知道这个,那么请在这里帮助我。我在网上搜索了解决方案,但未能找到。
这是 Objective-C
中的共享代码 FBRequest *req=[FBRequest requestWithGraphPath:@"me/feed" parameters:params HTTPMethod:@"POST"];
[req startWithCompletionHandler:^(FBRequestConnection *connection, id result, NSError *error{
if (!error) {
// Sucess! Include your code to handle the results here
NSLog(@"Successful sharing");
} else {
// An error occurred, we need to handle the error
// See: https://developers.facebook.com/docs/ios/errors
NSLog(@"Error while sharing data");
}
}];
提前谢谢。