@@ -39,7 +39,6 @@ $ curl -I {% data variables.product.api_url_pre %}/users/octocat/orgs
3939> Server: nginx
4040> Date: Fri, 12 Oct 2012 23:33:14 GMT
4141> Content-Type: application/json; charset=utf-8
42- > Status: 200 OK
4342> ETag: " a00049ba79152d03380c34652f2cb612"
4443> X-GitHub-Media-Type: github.v3
4544> X-RateLimit-Limit: 5000
@@ -376,7 +375,6 @@ The returned HTTP headers of any API request show your current rate limit status
376375$ curl -I {% data variables.product.api_url_pre %}/users/octocat
377376> HTTP/1.1 200 OK
378377> Date: Mon, 01 Jul 2013 17:27:06 GMT
379- > Status: 200 OK
380378> X-RateLimit-Limit: 60
381379> X-RateLimit-Remaining: 56
382380> X-RateLimit-Reset: 1372700873
@@ -400,7 +398,6 @@ If you exceed the rate limit, an error response returns:
400398```shell
401399> HTTP/1.1 403 Forbidden
402400> Date: Tue, 20 Aug 2013 14:50:41 GMT
403- > Status: 403 Forbidden
404401> X-RateLimit-Limit: 60
405402> X-RateLimit-Remaining: 0
406403> X-RateLimit-Reset: 1377013266
@@ -421,7 +418,6 @@ If your OAuth application needs to make unauthenticated calls with a higher rate
421418$ curl -u my_client_id:my_client_secret {% data variables.product.api_url_pre %}/user/repos
422419> HTTP/1.1 200 OK
423420> Date: Mon, 01 Jul 2013 17:27:06 GMT
424- > Status: 200 OK
425421> X-RateLimit-Limit: 5000
426422> X-RateLimit-Remaining: 4966
427423> X-RateLimit-Reset: 1372700873
@@ -510,7 +506,6 @@ $ curl -I {% data variables.product.api_url_pre %}/user
510506> Cache-Control: private, max-age=60
511507> ETag: " 644b5b0155e6404a9cc4bd9d8b1ae730"
512508> Last-Modified: Thu, 05 Jul 2012 15:31:30 GMT
513- > Status: 200 OK
514509> Vary: Accept, Authorization, Cookie
515510> X-RateLimit-Limit: 5000
516511> X-RateLimit-Remaining: 4996
@@ -521,7 +516,6 @@ $ curl -I {% data variables.product.api_url_pre %}/user -H 'If-None-Match: "644b
521516> Cache-Control: private, max-age=60
522517> ETag: " 644b5b0155e6404a9cc4bd9d8b1ae730"
523518> Last-Modified: Thu, 05 Jul 2012 15:31:30 GMT
524- > Status: 304 Not Modified
525519> Vary: Accept, Authorization, Cookie
526520> X-RateLimit-Limit: 5000
527521> X-RateLimit-Remaining: 4996
@@ -531,7 +525,6 @@ $ curl -I {% data variables.product.api_url_pre %}/user -H "If-Modified-Since: T
531525> HTTP/1.1 304 Not Modified
532526> Cache-Control: private, max-age=60
533527> Last-Modified: Thu, 05 Jul 2012 15:31:30 GMT
534- > Status: 304 Not Modified
535528> Vary: Accept, Authorization, Cookie
536529> X-RateLimit-Limit: 5000
537530> X-RateLimit-Remaining: 4996
0 commit comments