有什麼辦法通過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];
請幫助我。
非常感謝... – MohanVydehi