getting all notifications

I can easily get the unread notifications with this query: https://graph.facebook.com/USER_ID/notifications?access_token=ACCESS_TOKEN Is it possible to all the notifications (marked as read) too?

Upvotes: 0

Views: 2881

Answers (2)

Bhavesh Jethani
Bhavesh Jethani

Reputation: 3875

this link may be help you http://developers.facebook.com/docs/howtos/notifications-api/

Using The API

Applications can generate notifications by issuing a HTTP POST request to the /user_id/notifications Graph API, with a app access_token.

POST /{recipient_userid}/notifications?access_token= … &template= … &href= …

Upvotes: -1

nobane
nobane

Reputation: 72

Yes, you can specify the parameter include_read as 1 to indicate you wish to receive read notifications.

https://graph.facebook.com/USER_ID/notifications?include_read=1&access_token=ACCESS_TOKEN

Upvotes: 3

Related Questions