Facebook ios-sdk: новостная лента не отображается в новостной ленте - PullRequest
0 голосов
/ 04 февраля 2011

Я пытаюсь опубликовать сообщение для фида, но ее показывают только в профиле.

Как сделать так, чтобы это сообщение отображалось в ленте новостей и профиле?

Это мой пример кода:

SBJSON *jsonWriter = [[SBJSON new] autorelease];

NSDictionary* actionLinks = [NSArray arrayWithObjects:[NSDictionary dictionaryWithObjectsAndKeys:
                                                       _gameName,@"text",_gameLink,@"href", nil], nil];

NSString *actionLinksStr = [jsonWriter stringWithObject:actionLinks];


NSDictionary* imageShare = [NSDictionary dictionaryWithObjectsAndKeys:
                            @"image", @"type",
                            _imageURL, @"src",
                            _gameLink, @"href",
                            nil];


NSDictionary* attachment = [NSDictionary dictionaryWithObjectsAndKeys:
                            title_, @"name",
                            //@"teste", @"caption",
                            _msg, @"description",
                            [NSArray arrayWithObjects:imageShare, nil ], @"media",
                            _gameLink, @"href", nil];

NSString *attachmentStr = [jsonWriter stringWithObject:attachment];

NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                               @"Share on Facebook",  @"user_message_prompt",
                               actionLinksStr, @"action_links",
                               attachmentStr, @"attachment",
                               nil];


[_facebook dialog:@"feed" andParams:params andDelegate:self];

Если я попытаюсь опубликовать сообщение без параметров, сообщение будет отображаться как:

[_facebook dialog:@"feed" andDelegate:self];

Ответы [ 2 ]

1 голос
/ 10 февраля 2011

Попробуйте:

NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                               @"some text", @"message",
                               nil];


[facebook requestWithGraphPath:@"/me/feed" andParams:params
                 andHttpMethod:@"POST" andDelegate:self];

Надеюсь, это поможет.Для получения более подробной информации прочитайте пост-параметры

0 голосов
/ 10 февраля 2011

Извините, но это диалоговое окно не отображается.

Я решил удалить и заново создать приложение.

...