1

我正在使用 PHP。我希望在不使用 JavaScript 实时通知库的情况下从 PHP 中获取未读/未见计数。我该怎么做?

我在 JavaScript 库中看到您返回以下信息:

"data": {
    "deleted": "array activities or aggregated activities",
    "new": "array activities or aggregated activities",
    "unread":"int only sent for notification feeds",
    "unseen":"int only sent for notification feeds",
    "published_at":"time in iso format",
},
4

1 回答 1

1

使用 PHP 在服务器端接收更新的唯一方法是请求访问 web-hooks 或 Amazon SQS 更新。

有关此功能的更多信息,请参阅此处的文档。

于 2016-03-16T18:52:12.530 回答