Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 Graph API Explorer,并使用GET /me/inbox,我可以获得消息列表。
GET /me/inbox
例如,我想知道如何将它们限制为过去一天的消息?
您可以通过这种方式使用基于时间的分页:
me/inbox?since=1372395600
它依赖于updated_time收件箱线程的(unix 时间戳)参数。例如,通过这种方式,您可以从昨天开始一次用一条消息更新所有线程。
updated_time