I am trying to post on a wall using an http post request with the given url but I'm getting a method not implemented error. What am I doing wrong?
Assuming the user has already authorized my app and I have an access token with publish_stream permissions, is it possible to create a URL that will post to the users wall using the facebook graph?
Here is the url I am using where [userid] is the user id and [access_Token] is the access token:
https://graph.facebook.com/[userid]/feed?message=I like Cheesy Poofs&picture=http://simplyrecipes.com/photos/cheddar-cheese-puffs-b.jpg&link=alink.com&name=Cheesy Poofs Rule!&caption=Some awesome caption&description=cool description bruh&access_token=[access_token]
Edit In the link above I was missing "method=post". I now get an ID back from the following URL.
https://graph.facebook.com/[userid]/feed?method=post&message=I like Cheesy Poofs&picture=http://simplyrecipes.com/photos/cheddar-cheese-puffs-b.jpg&link=alink.com&name=Cheesy Poofs Rule!&caption=Some awesome caption&description=cool description bruh&access_token=[access_token]