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.
我希望这是一个合适的问题:我正在使用 Netflix API,我想知道在呈现时能够自动接收新数据的最佳方式是什么(在这种情况下,当 Netflix 用户看完一个最近观看的电影时) ) 我能想到的唯一方法是每隔一段时间发送垃圾邮件请求以查询他们的提要。PHP 会是我最好的选择吗?
没错,Netflix 没有通过他们的 API 提供任何推送通知。您必须定期轮询他们的提要,但不要太频繁:您的消费者密钥被限制为每秒一定数量的请求和每天的请求数。
我不确定您要做什么,以了解 PHP 是否是正确的选择。OAuth 库可用于几乎所有主要语言,所以这取决于您。