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 little speak english

i want create feed (post, note, link) to page wall ANY TIME (like offline_access) with new graph api

What should I do for it , what permissions should

thank you in advance.

share|improve this question

1 Answer

up vote 2 down vote accepted
  1. create facebook app
  2. take appid
  3. copy this link to browser

    https://www.facebook.com/dialog/oauth?client_id=appid&redirect_uri=canvasurl&scope=manage_pages&response_type=token

provide appid and the url u given in canvas url(eg:http://localhost/web)

  1. redirected url u can see access token.take that access token value.

  2. Facebook_Graph_Toolkit.GraphApi.Api x = new Facebook_Graph_Toolkit.GraphApi.Api(accesstoken);

        string id = x.PostFeedToTarget("pageid", "hi test");
    
share|improve this answer

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.