-1

Graph API を使用して、Facebook に正常にログインし、友達リストを取得しました。

ここで、壁にメッセージを投稿する必要があります。どのように?

4

4 に答える 4

1

ウォールへの投稿には URL を使用し、ウォールへの投稿にはこのメソッドを使用します

- (void)postToWall 
{

FBStreamDialog *dialog = [[[FBStreamDialog alloc] init] autorelease];
dialog.userMessagePrompt = @"Enter your message:";
dialog.attachment = [NSString stringWithFormat:@"{\"name\":\"Facebook Connect for iPhone\",\"href\":\"http://developers.facebook.com/connect.php?tab=iphone\",\"caption\":\"Caption\",\"description\":\"Description\",\"media\":[{\"type\":\"image\",\"src\":\"http://img40.yfrog.com/img40/5914/iphoneconnectbtn.jpg\",\"href\":\"http://developers.facebook.com/connect.php?tab=iphone/\"}],\"properties\":{\"another link\":{\"text\":\"Facebook home page\",\"href\":\"http://www.facebook.com\"}}}"];
[dialog show];
}
于 2012-05-02T08:58:36.287 に答える
0

NSMutableDictionary *variables = [NSMutableDictionary dictionaryWithCapacity:1];

[variables setObject:@"this is a test message: postMeFeedButtonPressed" forKey:@"message"];

FbGraphResponse *fb_graph_response = [fbGraph doGraphPost:@"yourFriendFbID/feed" withPostVars:variables];

SBJSON *parser = [[SBJSON alloc] init];
NSDictionary *facebook_response = [parser objectWithString:fb_graph_response.htmlResponse error:nil];   
[parser release];
于 2012-05-02T09:06:50.593 に答える
0

ダイアログを表示せずにFBアプリを考えてウォールに投稿したい場合は、次のようにすることができます

NSString *message = @"some text";
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:message, @"message",nil];                          
[fb requestWithGraphPath:@"me/feed" andParams:params andHttpMethod:@"POST" andDelegate:self]; //fb here is the FaceBook instance.

そして、ユーザーがログインしてアクセス許可を承認した後、必ずそれを行います。

于 2012-05-02T09:30:43.057 に答える