2011-10-20 60 views
0

有什麼辦法通過iPhone應用程序發送好友請求?如果是的話,請幫助我。我在網上搜索過,但沒有得到解決方案。如何通過iPhone應用程序向Facebook中的某個人發送好友請求?

我得到了下面的代碼發送應用程序的請求不發送好友請求

NSMutableDictionary *variables = [NSMutableDictionary dictionaryWithCapacity:4]; 
[variables setObject:[NSString stringWithFormat:@"Come and join XYZ App."] forKey:@"message"]; 
[variables setObject:@"url" forKey:@"picture"];  
[variables setObject:@"Hello" forKey:@"name"]; 
[variables setObject:@"Description" forKey:@"description"]; 

[_facebook requestWithGraphPath:[NSString stringWithFormat:@"/%@/feed",facebook_user_id] 
         andParams:variables 
        andHttpMethod:@"POST" 
        andDelegate:self]; 

請幫助我。

回答

0

沒有API發送好友請求,這必須使用Facebook的接口

+0

非常感謝... – MohanVydehi

0

Facebook的圖形API一個不支持添加好友來完成。您可以從Facebook個人資料中獲取好友列表,但您無法從Facebook Graph API發送好友請求。

+0

非常感謝。 – MohanVydehi

相關問題