I’m storing facebook userid’s and access tokens. Can i post to a selected user’s wall with this information? The following code is found here: http://developers.facebook.com/docs/reference/api/post/
I’m just not sure how to run it with php.
curl -F 'access_token=$accessToken' \
-F 'message=Check out this funny article' \
-F 'link=http://www.example.com/article.html' \
https://graph.facebook.com/$facebookid/feed
1 Answer