web-dev-qa-db-fra.com

Exemples d'API HTTP limitant les en-têtes de réponse HTTP

L’un des codes d’état HTTP supplémentaires ( RFC6585 ) est

Où puis-je trouver des exemples d'en-tête de réponse HTTP avec/REST API) utiles pour cet état de réponse HTTP?

72
M8R-1jmw5r

Voici quelques exemples d’en-têtes de réponse HTTP HTTP Limitant le taux d’API. Tiré de quatre API REST communes: Github, Vimeo, Twitter et Imgur:

Github Rate Limiting http://developer.github.com/v3/#rate-limiting

#=============================#=============================================#
# HTTP Header                 # Description                                 #
#=============================#=============================================#
| X-RateLimit-Limit           | Request limit per hour                      |
+-----------------------------+---------------------------------------------+
| X-RateLimit-Remaining       | The number of requests left for the time    |
|                             | window                                      |
+-----------------------------+---------------------------------------------+

Vimeo Rate Limiting http://developer.vimeo.com/guidelines/rate-limiting

#=============================#=============================================#
# HTTP Header                 # Description                                 #
#=============================#=============================================#
| X-RateLimit-Limit           | Request limit per day / per 5 minutes       |
+-----------------------------+---------------------------------------------+
| X-RateLimit-Remaining       | The number of requests left for the time    |
|                             | window                                      |
+-----------------------------+---------------------------------------------+
| X-RateLimit-Reset           | The remaining window before the rate limit  |
|                             | resets in UTC Epoch seconds                 |
+-----------------------------+---------------------------------------------+

Twitter REST Limitation du débit de l'API https://dev.Twitter.com/docs/rate-limiting/1.1

Remarque: Twitter utilise des en-têtes avec des noms similaires, tels que Vimeo, mais comporte un autre tiret dans chaque nom.

#=============================#=============================================#
# HTTP Header                 # Description                                 #
#=============================#=============================================#
| X-Rate-Limit-Limit          | The rate limit ceiling for that given       |
|                             | request                                     |
+-----------------------------+---------------------------------------------+
| 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                 |
+-----------------------------+---------------------------------------------+

Limites de débit de l'API Imgur http://api.imgur.com/

#=============================#=============================================#
# HTTP Header                 # Description                                 #
#=============================#=============================================#
| X-RateLimit-UserLimit       | Total credits that can be allocated         |
+-----------------------------+---------------------------------------------+
| X-RateLimit-UserRemaining   | Total credits available                     |
+-----------------------------+---------------------------------------------+
| X-RateLimit-UserReset       | Timestamp (unix Epoch) for when the credits |
|                             | will be reset                               |
+-----------------------------+---------------------------------------------+
| X-RateLimit-ClientLimit     | Total credits that can be allocated for the |
|                             | application in a day                        |
+-----------------------------+---------------------------------------------+
| X-RateLimit-ClientRemaining | Total credits remaining for the application |
|                             | in a day                                    |
+-----------------------------+---------------------------------------------+
116
M8R-1jmw5r

En plus des en-têtes spécifiques à l'API, n'oubliez pas le modeste Retry-After entête.

24
Raedwald