2

私は自分のアカウントを介して友人の壁に挨拶を投稿する必要があるアプリケーションに取り組んでいます。

これどうやってするの?

4

1 に答える 1

1
NSMutableDictionary *parmaDic = [NSMutableDictionary dictionaryWithCapacity:4];
[parmaDic setObject:[NSString stringWithFormat:@"hello world"] forKey:@"message"]; // if you want send message  
[parmaDic setObject:@"http://icon.png" forKey:@"picture"];  // if you want send picture    
[parmaDic setObject:@"Create post" forKey:@"name"];         // if you want send name    
[parmaDic setObject:@"Write description." forKey:@"description"]; // if you want  description

[_facebook requestWithGraphPath:[NSString stringWithFormat:@"/%@/feed",facebook_user_id] 
                      andParams:parmaDic 
                  andHttpMethod:@"POST"
                    andDelegate:self];

私はキー like.message,picture ..etc を使用しますhttp://developers.facebook.com/docs/reference/api/post/を参照してください

于 2012-11-01T10:04:39.663 に答える