Andrew
Andrew

Reputation: 16051

Get inbox messages from a date onwards

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

Answers (1)

borisdiakur
borisdiakur

Reputation: 12102

You can use time based paging this way:

me/inbox?since=1372395600

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

Related Questions