所以,今天早上我收到以下错误:
{"errors": [{"message": "The Twitter REST API v1 will soon stop functioning.
Please migrate to API v1.1. https://dev.twitter.com/docs/api/1.1/overview.",
"code": 68}]}
因为我使用的是tmhOauth twitter api,所以我去查看它是否有更新,并且似乎这里列出了一个问题。
我正在使用 api 用这样的媒体更新状态:
$code = $tmhOAuth->request('POST', 'https://upload.twitter.com/1/statuses/update_with_media.json',
array(
'media[]' => "@{$image}",
'status' => "{$text}"
),
true, // use auth
true // multipart
);
我发现我应该只更改要使用的链接1.1
而不是,1
但它仍然无法正常工作。