I’ve seen some facebook applications posting status updates on the users wall to all the registered users on the application. How is this possible? I am using PHP SDK and i am able to post to a user when he is logged in on my application but i have no clue on how to do it when they are not on the app and doesnt have an active session.
I’ve seen some facebook applications posting status updates on the users wall to all
Share
What I do is I save user’s Facebook User ID and access_token in a table in the database and then post “whenever needed”, for as long as that user hasn’t removed post permissions or the app from Facebook account.
Put this in a loop
And I can post while the users are not on the app!