-1

私は、マイアカウントを介して友達のウォールポストに挨拶を投稿する必要があるアプリケーションに取り組んでいます。

では、どうすればそれを実行できますか?誰かがアイデアを持っているなら私を助けてください。

前もって感謝します。

4

2 に答える 2

2

これを試して

 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];

私は.message、picture..etcのようなキーを使用します。http : //developers.facebook.com/docs/reference/api/post/を参照してください。

于 2012-04-16T10:54:04.167 に答える
1

最初に辞書を取り、友達の壁に投稿したいデータを次のように追加します。-

NSMutableDictionary  *postVariablesDictionary = [[NSMutableDictionary alloc] init];
//posting the text written in the textView   
[postVariablesDictionary setObject:self.TextView.text forKey:@"message"];

[objDelegate.facebook requestWithGraphPath:[NSString stringWithFormat:@"%@/feed",friendId] andParams:postVariablesDictionary andHttpMethod:@"POST" andDelegate:nil];

それが、データが友人の壁に投稿される方法です。お役に立てば幸いです:)

于 2012-04-16T11:03:13.693 に答える