0
無論我做什麼,我都無法通過iPhone應用程序將應用程序發佈到應用程序頁面牆(應用程序正在登錄)。我可以使用FBLoginDialog登錄,然後檢索數據來填充tableview,但是當我點擊一個按鈕來發布一些測試內容時,它不起作用。這裏是按鈕動作:從iPhone應用程序發佈到Facebook牆
- (void)compose:(id)sender;
{
NSString *[email protected]"115372005166292";
NSString *body = @"My Test";
NSArray *obj = [NSArray arrayWithObjects:body,[NSString stringWithFormat:@"%@", tid],nil];
NSArray *keys = [NSArray arrayWithObjects:@"message",@"target_id",nil];
NSDictionary *params = [NSDictionary dictionaryWithObjects:obj forKeys:keys];
[[FBRequest requestWithDelegate:self] call:@"facebook.stream.publish" params:params];
}
我也使用了FBStreamDialog的工作,但我面臨着兩個問題。該對話框缺乏自定義,我無法處理該項目發佈時的回調(例如重新加載桌面)
我一直在搜索互聯網和所有的例子都類似於上面的代碼,所以我'米不知道我可能會失蹤。
謝謝