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.

Is it possible to post on a page with a url scheme?

I currently have this, fb://profile/325899700848032

But this only opens the page ofcourse. What i mean is something like this fb://profile/325899700848032/PostMessage/"test message" or ../PostImage/image

Is anything like this possible to do?

Thanks!

share|improve this question
1  
You have to do this with the Facebook Graph API. See here to get started: developers.facebook.com/docs/reference/api/page – cpilko Jan 16 at 19:24
Thanks, i will take a look at it! – Emre Akman Jan 16 at 19:29

1 Answer

up vote 0 down vote accepted

To post on facebook page you need to ask first for the famous manage_pages authorization. Once you have it you make a FBRequest on the openGraph for me/accounts which return an array of the current user pages and other application. You parse this json for each page and you pick the token_access and the id. You then set the page token access on your facebook manager and then you can post for example a picture to the page with the "{id}/photos" POST graph request {id} being the page id.

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.