I want to post on facebook page/user wall my new events offline what i mean is when i add a new event in the data base i post this events to user profile automatically is there is something like thread or something that check my new events and publish it to my applications user or page offline .I use Facebook c# sdk and mvc thanks in advance any one want to edit my question or require more information are welcomed
|
|
|
As far I can understand your question , you require an application should post too the wall even if you are offline.In short you require a facebook application with offline capabilities. This can be done in a similar way as an application that does it online. Just save the uid of the user and the content , and when the app comes online , it will require the permission to post on the user's wall, and content can be posted. |
|||||||
|
|
First off, you need to be sure to request "offline_access" permission from the user.
Once the user adds your app, you'll need to save the auth token that is generated, which will be a "long-lived" token that can be used offline.
In your event handler, you would then simply loop through all users, using the saved tokens for authorization, and make a post call.
|
|||||||
|
