1

iPhone アプリからウォールに投稿を送信すると問題が発生します。すべてのデリゲート メソッドとメソッドを実装しました。

 -(void)request:(FBRequest *)request didReceiveResponse:(NSURLResponse *)response {
    // Keep this just for testing purposes.
    NSLog(@"received response");
}

私のアプリは動作し、投稿はウォールに表示されますが、私のアプリは何の応答も得ず、アクティビティ インジケーターから動かなくなります。NSLog からのコンソールには何も表示されません。

誰が知っていますか、どこに問題がありますか? 私はここで死にます:-/

編集:

- (IBAction)fbButtonPressed:(id)sender {

// Create the parameters dictionary that will keep the data that will be posted.
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                               @"330334280387192", @"app_id",
                               nil];

// Publish.
[self.facebook dialog:@"feed" andParams:params andDelegate:self];

}

ユーザー入力にフィード ダイアログを使用しています

4

0 に答える 0