php – Twitter API检测固定的推文
作者:互联网
有没有办法使用twitter api返回的数组检测固定的推文?我有print_r返回的数组,没有任何表明推文是否被固定.
我目前使用的方法是
$statuses = $connection->get("statuses/home_timeline", array("count" => 25, "exclude_replies" => true));
该文档没有提到固定的推文https://twitteroauth.com/
解决方法:
用户个人资料在过去的某个时刻显示了固定推文,但不再显示.
https://api.twitter.com/1.1/users/show.json?id=2705321
"has_extended_profile": true,
"default_profile": false,
"default_profile_image": false,
"pinned_tweet_ids": [
451484520316153860
],
"has_custom_timelines": false,
标签:php,twitter,twitter-oauth 来源: https://codeday.me/bug/20190829/1760841.html