Wie zum Senden von App-Anforderung an den facebook Freunden über facebook iOS sdk?

Ich bin mit facebook-sdk für mein iOS-facebook-Anwendung. Ich möchte zum senden von app-Anforderung für mehrere Benutzer. Ich verwende folgende Methode für diesen Zweck.

NSArray* actionLinks = [NSArray arrayWithObjects:[NSDictionary dictionaryWithObjectsAndKeys:
                                                  @"Get Started",@"name",@"http://www.facebook.com/apps/application.php?id=135775646522275/",@"link", nil], nil];
NSString *actionLinksStr = [jsonWriter stringWithObject:actionLinks];

NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                               @"Check out this awesome app I am using.",@"message",
                               @"Check this out", @"notification_text",
                               @"http://www.facebook.com/apps/application.php?id=135775646522275/",@"link",
                               appImage,@"picture", 
                               actionLinksStr, @"actions",

                               nil];
[facebook dialog:@"apprequests"
       andParams:params
     andDelegate:self];

Das problem ist, dass ich nach dem Aufruf dieser Methode werden die app-Anforderung web-view angezeigt und die app-Anforderung wird erfolgreich gesendet. Aber nur app_request auf Freunde zählen Wand erhöht, Weder bekommt er eine Benachrichtigung für die app verlangen, noch kann er sehen, die app-Anfrage.
Was kann das problem sein, gibt es eine andere alternative Möglichkeit zum senden von app-Anforderung von iOS-facebook-app ?

InformationsquelleAutor vipsk | 2011-11-16
Schreibe einen Kommentar