Facebookの友達のウォールに投稿しようとしています。次の2つの方法を試しましたが、うまくいきません。
1.1。
//post on wall
NSMutableDictionary *variables = [[NSMutableDictionary alloc]initWithCapacity:1];
[variables setObject:@"v" forKey:@"message"];
[graphref doGraphPost:[NSString stringWithFormat:@"1389799421/feed"] withPostVars:variables];
//post on wall
2.2。
[_facebook requestWithGraphPath:@"1389799421/feed"
andParams:[NSMutableDictionary dictionaryWithObject:@"test wall post" forKey:@"message"]
andHttpMethod:@"POST"
andDelegate:self];
...そして私は理由がわかりません!! FacebookのWebサイトに、バンドルと権限を追加しました。