Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Nov 1, 2017. It is now read-only.

Modified content/guides/best-practices-for-integrators.md#825

Merged
hubot merged 1 commit intomasterfromupdate-1437579348
Jul 22, 2015
Merged
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletionscontent/guides/best-practices-for-integrators.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -63,6 +63,23 @@ If you hit a rate limit, it's expected that you back off from making requests an

You can always [check your rate limit status](/v3/rate_limit/) at any time. Checking your rate limit incurs no cost against your rate limit.

## Dealing with abuse rate limits

[Abuse rate limits](/v3/#abuse-rate-limits) are another way we ensure the API's availability.
To avoid hitting this limit, you should ensure your application follows the guidelines below.

* Make authenticated requests, or use your application's client ID and secret. Unauthenticated
requests are subject to more aggressive abuse rate limiting.
* Make requests for a single user or client ID serially. Do not make requests for a single user
or client ID concurrently.
* If you're making a large number of `POST`, `PATCH`, `PUT`, or `DELETE` requests for a single user
or client ID, wait at least one second between each request.
* Requests that create content which triggers notifications, such as issues, comments and pull requests,
may be further limited. Please create this content at a reasonable pace to avoid further limiting.
* When you have been limited, wait the number of seconds specified in the `Retry-After` response header.

We reserve the right to change these guidelines as needed to ensure availability.

## Dealing with API errors

Although your code would never introduce a bug, you may find that you've encountered successive errors when trying to access the API.
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp