如何在iOS中为Facebook帖子制作“赞”动作?我从FB收到新闻源,我需要制作喜欢和评论按钮。我使用graph api
,但没有Facebook SDK。
对于“喜欢”操作,我尝试了this。
使用POST我发送到
https://graph.facebook.com/[User FB
ID]/og.likes parameters access_token and like url
但我收到一个错误:
{ error = {
code = 240;
message = "(#240) Requires a valid user to be specified (either via
the session or via the API parameter for specifying the user.";
type = OAuthException; }; }
权限:
FacebookPermissions = @"publish_stream,email,read_mailbox,user_online_presence,
friends_online_presence,user_about_me,share_item,read_stream,read_page_mailboxes,
read_friendlists,read_insights,publish_actions,user_likes,friends_likes";
我该如何解决这个问题?
答案 0 :(得分:0)