0

Twitter API v1.1 エンドポイントを呼び出す場合:

https://upload.twitter.com/1.1/media/uplaod.json

次のエラーが表示されます。

message: The Twitter REST API v1 is no longer active. Please migrate to API 
v1.1. https://dev.twitter.com/docs/api/1.1/overview.
code: 64

requests-oauthlib を使用して python-requests 経由で作成された完全なリクエスト:

POST https://upload.twitter.com/1.1/media/uplaod.json
Content-Length: 25566
Accept-Encoding: gzip, deflate
Accept: */*
User-Agent: python-requests/2.4.3 CPython/2.7.2 Windows/post2008Server
Connection: keep-alive
Content-Type: multipart/form-data; boundary=57ae35dd03714226a367e5a8268f9c5b
Authorization: OAuth oauth_nonce="<censored>", oauth_timestamp="1424492683", oauth_version="1.0", oauth_signature_method="HMAC-SHA1", oauth_consumer_key="<censored>", oauth_token="<censored>", oauth_signature="<censored>"

--57ae35dd03714226a367e5a8268f9c5b
Content-Disposition: form-data; name="media[]"; filename="4725ec4acf23d7a9a7fd92337f2b4713f746c7df.jpg"
Content-Type: application/octet-stream
<censored...binary...data>
--57ae35dd03714226a367e5a8268f9c5b--

これは今日の早い段階で機能していました。誰かがそれがツイッターの問題であり、私が怒っていないことを確認できますか?

https://api.twitter.com/1.1/statuses/home_timeline.jsonなどの他のエンドポイントは正常に動作しているようです。

Chrome でこのリンクをクリックすると、エラーが発生します: https://upload.twitter.com/1.1/media/uplaod.json

私じゃなくてツイッターです…

4

1 に答える 1