开发者

daily post to application users wall

开发者 https://www.devze.com 2023-02-13 08:12 出处:网络
i want to post daily note to facebookuser profile which using m开发者_开发问答y facebook application via it\'s own. how can i do it?Since you didn\'t provide what language or what you\'ve tried so far

i want to post daily note to facebook user profile which using m开发者_开发问答y facebook application via it's own. how can i do it?


Since you didn't provide what language or what you've tried so far, these are quick tips to get you started:

  1. Ask for the publish_stream permission
  2. Then using your SDK or the technology you are using (source):

    curl -F 'access_token=...' \
         -F 'subject=This is a note' \
         -F 'message=Test note.' \
         https://graph.facebook.com/PROFILE_ID/notes
    
  3. No need for the access_token parameter.
0

精彩评论

暂无评论...
验证码 换一张
取 消