I am using c# (asp.net mvc) and want to post on page's wall as page, not as page's owner. (not as profile who owns it) through my page which is hosted some where else not on facebook.
How can i do this.
----------------edit--------------
This is my page http://www.facebook.com/#!/pages/Rhino-Hub/135447799844908
i want to post on this page's wall as my page through my app rather then from this page owner's profile (which is also me).
Currently doing this to post a wall
- Login on facebook
- Switch acount to page by: Account Settings-->Use facebook as page--> Switch
- Write something on wall
this way all subscribers would see an update.
I want to do this from my code.
Answer I have accepted didn't solved my problem but ya it helped me a bit. I have accepted it as its the only answer this ques开发者_JAVA技巧tion has received.
I don't use C#, but I'll give you the steps to get you started:
- Grant the
manage_pages
permission Generate an Application(See EDIT)access_token
. Refer to this document (App Login section)Call:
https://graph.facebook.com/me/accounts
Use the page's
access_token
retrieved to publish to your page.
EDIT:
No need for the Application access_token
, please refer to this answer.
精彩评论