Facebook SDK を iOS ネイティブ APP に統合しました。ログインを完了し、アクティブな FBSession を受け取りました。次に、公開許可を求めてから、たとえば Candy Crush Saga のような 1 人の友人に招待状を送信します。出来ますか?
助けてください。
私が使用する投稿を公開するには:
NSMutableDictionary *params = [@{
@"link" : @"https://developers.facebook.com/ios",
@"picture" : @"https://developers.facebook.com/attachment/iossdk_logo.png",
@"name" : @"Facebook SDK for iOS",
@"caption" : @"Build great social apps and get more installs.",
@"description" : @"The Facebook SDK for iOS makes it easier and faster to develop Facebook integrated iOS apps."
} mutableCopy];
[FBRequestConnection
startWithGraphPath:@"me/feed"
parameters:params
HTTPMethod:@"POST"
completionHandler:^(FBRequestConnection *connection,
id result,
NSError *error) {
NSString *alertText;
if (error) {
alertText = [NSString stringWithFormat:
@"error: domain = %@, code = %d",
error.domain, error.code];
} else {
alertText = [NSString stringWithFormat:
@"Posted action, id: %@",
result[@"id"]];
}
// Show the result in an alert
[[[UIAlertView alloc] initWithTitle:@"Result"
message:alertText
delegate:self
cancelButtonTitle:@"OK!"
otherButtonTitles:nil]
show];
}];
しかし、招待を送信するグラフのパスは何ですか?
前もって感謝します
ルカ