Reputation: 16051
Using the Graph API Explorer, and using GET /me/inbox
, I can get a list of messages.
I was wondering how to limit them to messages from the past day, for example?
Upvotes: 1
Views: 293
Reputation: 12102
You can use time based paging this way:
It relies on the updated_time
(unix timestamp) parameter of an inbox thread. This way you could get all the threads updated with a message at a time since yesterday, for example.
Upvotes: 1