1

i am new to facebook app development and i am trying to post a simple text on the wall of the user using the https://graph.facebook.com/me/feed?access_token=ACCESS_TOKEN&message=hello but this does not seem to be working..Any thoughts as to where i might be going wrong?

arpitsolanki
  • 73
  • 3
  • 10

2 Answers2

0
  1. Check if you have permissions to post from the app.
  2. Add app_id to your call.
FSP
  • 4,677
  • 2
  • 19
  • 19
0

If you’re just calling the URL you mentioned, that would be a GET request. To post a message to the user’s wall you have to use method POST. You can test it in the Graph API Explorer – change the method to POST via the dropdown, click „add a field” and use name=message and value=your_message …

CBroe
  • 91,630
  • 14
  • 92
  • 150