daily post to application users wall
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:
- Ask for the
publish_stream
permission 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
- No need for the
access_token
parameter.
精彩评论