diff options
author | Felix Gilcher <felix.gilcher@asquera.de> | 2013-01-28 14:49:27 +0100 |
---|---|---|
committer | Felix Gilcher <felix.gilcher@asquera.de> | 2013-01-28 14:49:27 +0100 |
commit | 2ddaf0038710d057e96f8211036399aa65d3ddb4 (patch) | |
tree | 759abd02fc25491e30ae10c9e58798100a1eaa31 /doc | |
parent | bd948549293e1abfa32ec566b687670fed47a3d7 (diff) | |
download | gitlab-ce-2ddaf0038710d057e96f8211036399aa65d3ddb4.tar.gz |
Added documentation for passing the token as header
The documentation was unclear about how to pass the api private token as
header. Updated the doc to include the nessesary information bits and
added an example using the curl command line client.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/README.md | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/api/README.md b/doc/api/README.md index 477429c9fa0..881d4ab638f 100644 --- a/doc/api/README.md +++ b/doc/api/README.md @@ -1,6 +1,6 @@ # GitLab API -All API requests require authentication. You need to pass a `private_token` parameter by url or header. You can find or reset your private token in your profile. +All API requests require authentication. You need to pass a `private_token` parameter by url or header. If passed as header, the header name must be "PRIVATE-TOKEN" (capital and with dash instead of underscore). You can find or reset your private token in your profile. If no, or an invalid, `private_token` is provided then an error message will be returned with status code 401: @@ -18,6 +18,13 @@ Example of a valid API request: GET http://example.com/api/v3/projects?private_token=QVy1PB7sTxfy4pqfZM1U ``` +Example for a valid API request using curl and authentication via header: + +``` +curl --header "PRIVATE-TOKEN: QVy1PB7sTxfy4pqfZM1U" "http://example.com/api/v3/projects" +``` + + The API uses JSON to serialize data. You don't need to specify `.json` at the end of API URL. #### Pagination |