这是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怎么不行呢?