Reputation: 32117
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
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 question has received.
Upvotes: 0
Views: 1543
Reputation: 38135
I don't use C#, but I'll give you the steps to get you started:
manage_pages
permissionaccess_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.
Upvotes: 2