facebook api curl status message
这是facebook 的api
http://developers.facebook.com/docs/reference/api/status/
出版
requires the publish_stream permission.
to publish a status update, post the message field to the feed/wall of the user whose status you want to update, i.e., http://graph.facebook.com/user_id/feed.
curl -f 'access_token=...' \
-f 'message=this is my status update' \
https://graph.facebook.com/me/feed
我通过代理服务器发的
curl -x 192.168.xx.xxx:xxx
-f 'access_token=2227470867|2.tvtbctlu....'
-f 'message=this is my status update'
https://graph.facebook.com/me/feed
怎么不行呢?
------解决方案--------------------
这个方法需要publish_stream的权限。可能的token值获得的时候并没有获得这个权限。