token

token

[2] GitHubBearer のような意味で token を使っています。

[1] Docker Hub API - Docker Documentation ( 版) <https://docs.docker.com/reference/api/docker-io_api/#authorize-a-token-for-a-library>

WWW-Authenticate: Token signature=123abc,repository="foo/bar",access=write

X-Docker-Token: signature=123abc,repository="foo/bar",access=write

X-Docker-Endpoints: registry-1.docker.io [, registry-2.docker.io]

[3] Docker Hub API - Docker Documentation ( 版) <https://docs.docker.com/reference/api/docker-io_api/#authorize-a-token-for-a-library>

Authorization: Token signature=123abc,repository="library/foobar",access=write

[4] Docker Registry API - Docker Documentation ( 版) <https://docs.docker.com/reference/api/registry_api/>

Authorization: Token signature=123abc,repository="foo/bar",access=read

[5] Docker Hub and Registry Spec - Docker Documentation ( 版) <https://docs.docker.com/reference/api/hub_registry_spec/>

[6] Validic | Passing Tokens via Authorization HTTP ( 版) <https://support.validic.com/customer/portal/articles/1530226-passing-tokens-via-authorization-http>

curl -X GET -H 'Authorization: Token token={ACCESS_TOKEN}'

https://api.validic.com/v1/organizations/{ORGANIZATION_ID}.json

[7] Making a Listing Recommendation API Call ( 版) <http://developer.ebay.com/devzone/listing-recommendation/Concepts/MakingACall.html>

HTTP Headers—Each Listing Recommendation API call requires an Authorization HTTP header. The Authorization token value should be pre-fixed by 'TOKEN', so the complete value looks like: TOKEN <authorization token value>.

[8] buddy-auth - Auth facilities for ring based apps. (Andrey Antukh, <niwi@niwi.nz> 著, 版) <https://funcool.github.io/buddy-auth/latest/>

This is a possible aspect of the authorization header

Authorization: Token 45c1f5e3f05d0

[9] Uber API Authentication Protocols ( 版) <https://developer.uber.com/v1/auth/>

In order to access protected resources you can pass your API Token, called a server_token. This must be passed as an Authorization header with type Token.

Example:

curl -H 'Authorization: Token YOUR_SERVER_TOKEN' \

'https://api.uber.com/v1/products?latitude=37.7759792&longitude=-122.41823'

[10] NYPL Digital Collections API ( 版) <http://api.repo.nypl.org/>

In the examples below, 'abcdefghijklmn' is the authentication token you receive via email when you sign up for API access.

Example curl request:

curl "http://api.repo.nypl.org/api/v1/items/search?q=cats&publicDomainOnly=true" -H 'Authorization: Token token="abcdefghijklmn"'

[11] HSReplay.net/test_api.py at 1d65082485e319e2f0fe5192ebd6dd4a5c01a882 · HearthSim/HSReplay.net () <https://github.com/HearthSim/HSReplay.net/blob/1d65082485e319e2f0fe5192ebd6dd4a5c01a882/tests/test_api.py>

HTTP_AUTHORIZATION="Token %s" % (token),

[12] Running Build in Debug Mode - Travis CI () <https://docs.travis-ci.com/user/running-build-in-debug-mode/>

-H "Authorization: token ********************" \