Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just got the access token with publish_stream, but when i access below url in browsers, Its not posting message in my wall; It just displays all the feed contents.

Wwhat is the problem, I just want to post a simple message in wall by just visiting a URL like below; Am i wrong somewhere?

https://graph.facebook.com/me/feed?access_token={REMOVED}&message=hello
share|improve this question

1 Answer

up vote 0 down vote accepted

Two things

  1. That's a GET request, not a POST request - if you can't make a POST request via your code or SDK for some reason, you can simulate one by adding &method=post to the request

  2. You included your access token in the question (now removed) - i strongly recommend changing your password on Facebook ASAP

share|improve this answer
I already removed some of the content in the middle of access token :D – Hem Teja Oct 2 '12 at 19:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.