I’m using this to get a notification list:
https://graph.facebook.com/me/notifications/?include_read=0
Now I’d like to mark them as read, how do I do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You should issue a POST request to
https://graph.facebook.com/%notification_id%?unread=falsewhere %notification_id% is the notification identifier you’ve received earlier (usually something like ‘notif_XXXXX_YYYYY’).If you want to mark all notifications read, you can perform a batch request.