How do I add an administrator to a Facebook page using the Graph API?
You can't, you have to use the Facebook Developer site.
Related
how to request access to a facebook Page for business account using facebook marketing api
Facebook released a special website dedicated to the Marketing API:
https://www.facebookmarketingdevelopers.com/reference_app/
You can watch theses videos as well to understand how it works:
https://www.facebook.com/marketingdevelopers/videos
After latest Facebook API changes, is there any way to post on friend's wall, using authenticated access_token?
I have tried using Feed Dialog, but redirects to facebook login page. I want to bypass the login step.
Unfortunately not. From the Facebook API documentation on publishing:
"Note: If you are posting to a friend's timeline or wall, you must use the Feed Dialog."
Full details: https://developers.facebook.com/docs/reference/api/publishing/
No,You Cant
Currently, Facebook allows to post by two ways:
Using FacebookAPI
Using Facebook SDK (depends on your requirement)
And in both these methods its must that you should be an authorised user to perform the action, authentication is a must.So you can't do this without a login.
NB: As per the Facebook Developer docs, graph API no longer works .(But I would like to add on that many of the iOS apps which used this service are still functioning well). So, I prefer to use Facebook SDK.
Hope my answer is clear.
How to post in facebook fanpage automatically from my website ?
for example when i update new post in my website and i need to post in facebook fan page automatically....
I believe Facebook offers a certain number of APIs which would allow you to integrate Facebook into your own website to some degree; you can always try their dev centre.As far as I know, however, you can only post to Facebook through social networks like Twitter (see: linking a Twitter account to Facebook), or through Facebook apps you've developed yourself.
You need to create facebook app and use the app secret key and and API key in facebook SDK
script for automatic posting. for more details click the following link. I think this may help you. http://www.damnsemicolon.com/php/auto-post-facebook-with-facebook-sdk
I have a kiosk-like device that I'd like to integrate with Facebook. Essentially, I'd like to allow a user to log into their Facebook account, give permission to my app, which will post a text/picture/video to their wall.
Is this possible?
What API/toolkits do you recommend?
Thanks
Kane
Use the Facebook Graph API. Here is the link: https://developers.facebook.com/docs/reference/api/
and https://developers.facebook.com/docs/reference/api/post/
:)
How I can integrate facebook graph api in cakephp for facebook login.
You wrote:
for facebook login
so, if you would do login to your page with facebook, probably you should use taht official JS libs: https://github.com/facebook/connect-js . With that, you could achieve facebook user id-number, so you could use it in DB as unique key which represent user.
Take a look at Nick Baker's fabulous CakePHP Facebook Plugin.