Facebook mark notification as read using python -
i have managed read unseen count of facebook notifications, wondering if there way mark notifications read. i'm using facebook api python. saw link has posted in site it's expired.
you should set field: unread=0 in order mark notification read:
import facebook graph = facebook.graphapi(access_token) graph.put_object("notification_id", "", unread=0)
for more info can refer this: graph api doc norfications
let me know if there issue.
python facebook-graph-api notifications
No comments:
Post a Comment