我不是专业人士,但目前,我在我的网站上使用 Twitter API V1 从用户的 Twitter 帐户中获取基本数据。
我正在使用基本 json 从https://api.twitter.com/1/users/show.json?screen_name=katyperry获取内容,它可以工作。
然而,随着 Twitter API V1.1 ( https://dev.twitter.com/docs/api/1.1 ) 的推出,我获取数据的方法不再可行。
我试过(https://dev.twitter.com/docs/api/1.1/get/users/show),我什至无法进入页面https://api.twitter.com/1.1/users/show。 json?screen_name=verified它显示:
{"errors":[{"message":"Bad Authentication data","code":215}]}
据我了解,我需要将其链接到 Twitter 应用程序并进行身份验证,我该怎么做?
我是否不再能够使用我通常使用基本 php 获取 json 文件的方法?有人可以找到我获取用户信息的替代方法吗?