How to post to a friends Wall using Facebook Graph API for iPhone

前端 未结 3 932
忘掉有多难
忘掉有多难 2020-12-28 10:42

I want to post something in the users friends wall.

I use this to post into the user wall

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

    NSDi         


        
3条回答
  •  没有蜡笔的小新
    2020-12-28 11:46

    Have you tried using,

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

    UPDATE:

    Posting on friends wall will no more work with Graph API. Instead you must use FBDialog.

提交回复
热议问题