2017-11-16 [長年日記]

_ [twitter]APIでなんか作ってみる

OAuth, DM, tweet はできた。

運用するに重要なRate Limit あたりを和訳する。 https://developer.twitter.com/en/docs/basics/rate-limits

GETで叩けるAPIについてはこの表にある通り。ここに書いてないものはデフォルト15リクエスト/alotteduser(=user*min?)。全てのrequest回数は15分の区切りで数える。

create/deleteのPOSTで叩く系はこちらを読んでユーザあたりのdaily limitについて理解しろ、いいな。

もうひとつ。制限方法 https://developer.twitter.com/en/docs/basics/rate-limiting

APIの制限は基本的には個人単位です。正確に言うとaccess token単位です。 When using application-only authentication, rate limits are determined globally for the entire application. If a method allows for 15 requests per rate limit window, then it allows you to make 15 requests per window — on behalf of your application. This limit is considered completely separately from per-user limits.

15 Minute Windows

Rate limits are divided into 15 minute intervals. All endpoints require authentication, so there is no concept of unauthenticated calls and rate limits. There are two initial buckets available for GET requests: 15 calls every 15 minutes, and 180 calls every 15 minutes.

HTTP Headers and Response Codes

Use the HTTP headers in order to understand where the application is at for a given rate limit, on the method that was just utilized. Note that the HTTP headers are contextual. When using app-only auth, they indicate the rate limit for the application context. When using user-based auth, they indicate the rate limit for that user-application context. x-rate-limit-limit: the rate limit ceiling for that given endpoint x-rate-limit-remaining: the number of requests left for the 15 minute window x-rate-limit-reset: the remaining window before the rate limit resets, in UTC epoch seconds When an application exceeds the rate limit for a given API endpoint, the API will return a HTTP 429 “Too Many Requests” response code, and the following error will be returned in the response body: { "errors": [ { "code": 88, "message": "Rate limit exceeded" } ] } To better predict the rate limits available, consider periodically using GET application / rate_limit_status. Like the rate limiting HTTP headers, this resource’s response will indicate the rate limit status for the calling context — when using app-only auth, the limits will pertain to that auth context. When using user-based auth, the limits will pertain to the application-user context.

GET and POST Request Limits

Rate limits on reads from the system (GET) are defined on a per user and per application basis, while rate limits on writes into the system (POST) are defined solely at the user account level. In other words, for reading rate limits consider the following scenario: If user A launches application Z, and app Z makes 10 calls to user A’s mention timeline in a 15 minute window, then app Z has 5 calls left to make for that window Then user A launches application X, and app X calls user A’s mention timeline 3 times, then app X has 12 calls left for that window The remaining value of calls on application X is isolated from application Z’s, despite the same user A Contrast this with write allowances, which are defined on a per user basis. So, if user A ends up posting 5 Tweets with application Z, then for that same period, regardless of any other application that user A opens, those 5 POSTs will count against any other application acting on behalf of user A during that same window of time. Lastly, there may be times when the rate limit values that are returned are inconsistent, or cases where no headers are returned at all. Perhaps memcache has been reset, or one memcache was busy so the system spoke to a different instance: the values may be inconsistent now and again. There is a best effort to maintain consistency, with a tendency towards giving an application extra calls if there is an inconsistency.

Tips to avoid being Rate Limited

The tips below are there to help you code defensively and reduce the possibility of being rate limited. Some application features that you may want to provide are simply impossible in light of rate limiting, especially around the freshness of results. If real-time information is an aim of your application, look into the Streaming APIs.

Caching

Store API responses in your application or on your site if you expect a lot of use. For example, don’t try to call the Twitter API on every page load of your website landing page. Instead, call the API infrequently and load the response into a local cache. When users hit your website load the cached version of the results.

Prioritize active users

If your site keeps track of many Twitter users (for example, fetching their current status or statistics about their Twitter usage), consider only requesting data for users who have recently signed into your site.

Adapt to the search results

If your application monitors a high volume of search terms, query less often for searches that have no results than for those that do. By using a back-off you can keep up to date on queries that are popular but not waste cycles requesting queries that very rarely change. Alternatively, consider using the Streaming APIs and filter on your search terms. Use application-only auth as a “reserve” Requests using Application-only authentication are evaluated in a separate context to an application’s per-user rate limits. For many scenarios, you may want to use this additional rate limit pool as a “reserve” for your typical user-based operations.

Blacklisting

If an application abuses the rate limits, it will be blacklisted. Blacklisted apps are unable to get a response from the Twitter API. If you or your application has been blacklisted and you think there has been a mistake, you can use our Platform Support forms to request assistance. Please include the following information: If you are using the REST API, make a call to the GET application / rate_limit_status from the account or computer which you believe to be blacklisted. Explain why you think your application was blacklisted. Describe in detail how you have fixed the problem that you think caused you to be blacklisted.

Streaming API

The Streaming API has rate limiting and access levels that are appropriate for long-lived connections. See the Streaming APIs documentation for more details. Leveraging the Streaming API is a great way to free-up your rate limits for more inventive uses of the Twitter API. Rate Limiting information for the Streaming API is detailed on Connecting to a streaming endpoint. Limits Per Window Per Resource The API rate limit window duration is 15 minutes. Visit our API Rate Limit: Chart page to see the limits by resource. Note that endpoints/resources not listed in the above chart default to 15 requests per allotted user.


検索キーワード:

記事

カテゴリ

Amazon | Android | apache | Arduino | bash | bluetooth | Books | CakePHP | CakePHP3 | CakePHP4 | Chrome | Chromebook | CodeIgniter | CSS | Docker | Eclipse | Emacs | etc | Firefox | Flask | Gadget | git | Gnome | Google | Heroku | HTML | hugo | Internet | iPhone | IS01 | IS03 | Java | JavaScript | json | Kotlin | Laravel | LINE | magento | mysql | nginx | nodejs | Oops | PC | Perl | php | Python | Qt | Ruby | ruby | Shell | ssh | tdiary | twitter | ubuntu | unix | VirtualBox | Web | Windows | windows | WindowsMobile | WX5 | YAML | zsh | ここか | そば | つくる | つり | できごと | アクアリウム | ギター | セキュリティ | プリンタ | ベース | ボクシング | ポエム | マネー | メシ | ラズパイ | 仕事 | 作家 | 壮絶 | 妄想 | 忘れる | 料理 | | 暑い | 痛い | 社会 | 自転車 | | 車輪 | | 野球 | 銭湯 | 音楽 |

全部 : / 今日 :

近頃

links

profile

もっとヒゲ伸ばしたい。