Waffles
Waffles

Reputation: 103

How to update facebook page?

I am a PHP developer who was asked by a client to update their Facebook business page with changing statistics. Not by posting the information as status updates at an interval, but to update the Facebook page description like AJAX would update a page view counter. Is this possible? Can you point me in the right direction of how to implement this?

Upvotes: 0

Views: 1260

Answers (1)

Dale
Dale

Reputation: 10469

You're going to need to authenticate your application (this is also good reading here) and ask for extended_permissions, specifically the manage_pages permission.

This allows your application to login as a page.

Then you can modify certain parts of the page attributes.

There is a nice class available on phpclasses.org to aid in logging in with facebook, though their own PHP SDK is really nice when you get used to it.

Good luck!

Upvotes: 1

Related Questions