debian-mirror-gitlab/doc/user/profile/personal_access_tokens.md

56 lines
3 KiB
Markdown
Raw Normal View History

2017-09-10 17:25:29 +05:30
# Personal access tokens
> [Introduced][ce-3749] in GitLab 8.8.
2018-03-17 18:26:18 +05:30
Personal access tokens are the preferred way for third party applications and scripts to
authenticate with the [GitLab API][api], if using [OAuth2](../../api/oauth2.md) is not practical.
2017-09-10 17:25:29 +05:30
2019-07-07 11:18:12 +05:30
You can also use personal access tokens to authenticate against Git over HTTP or SSH. They must be used when you have [Two-Factor Authentication (2FA)][2fa] enabled. Authenticate with a token in place of your password.
2017-09-10 17:25:29 +05:30
2019-07-07 11:18:12 +05:30
To make [authenticated requests to the API][usage], use either the `private_token` parameter or the `Private-Token` header.
2017-09-10 17:25:29 +05:30
The expiration of personal access tokens happens on the date you define,
at midnight UTC.
## Creating a personal access token
You can create as many personal access tokens as you like from your GitLab
profile.
2019-07-07 11:18:12 +05:30
1. Log in to GitLab.
1. In the upper-right corner, click your avatar and select **Settings**.
1. On the **User Settings** menu, select **Access Tokens**.
1. Choose a name and optional expiry date for the token.
2017-09-10 17:25:29 +05:30
1. Choose the [desired scopes](#limiting-scopes-of-a-personal-access-token).
2019-07-07 11:18:12 +05:30
1. Click the **Create personal access token** button.
2017-09-10 17:25:29 +05:30
1. Save the personal access token somewhere safe. Once you leave or refresh
the page, you won't be able to access it again.
2019-07-07 11:18:12 +05:30
### Revoking a personal access token
2017-09-10 17:25:29 +05:30
2019-07-07 11:18:12 +05:30
At any time, you can revoke any personal access token by clicking the
respective **Revoke** button under the **Active Personal Access Token** area.
2017-09-10 17:25:29 +05:30
## Limiting scopes of a personal access token
Personal access tokens can be created with one or more scopes that allow various
actions that a given token can perform. The available scopes are depicted in
the following table.
| Scope | Description |
| ----- | ----------- |
|`read_user` | Allows access to the read-only endpoints under `/users`. Essentially, any of the `GET` requests in the [Users API][users] are allowed ([introduced][ce-5951] in GitLab 8.15). |
2019-07-31 22:56:46 +05:30
| `api` | Grants complete access to the API and Container Registry (read/write) ([introduced](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5951) in GitLab 8.15). |
2018-12-13 13:39:08 +05:30
| `read_registry` | Allows to read (pull) [container registry] images if a project is private and authorization is required ([introduced](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/11845) in GitLab 9.3). |
2018-03-17 18:26:18 +05:30
| `sudo` | Allows performing API actions as any user in the system (if the authenticated user is an admin) ([introduced][ce-14838] in GitLab 10.2). |
2019-07-31 22:56:46 +05:30
| `read_repository` | Allows read-only access (pull) to the repository through git clone. |
| `write_repository` | Allows read-write access (pull, push) to the repository through git clone. Required for accessing Git repositories over HTTP when 2FA is enabled. |
2017-09-10 17:25:29 +05:30
[2fa]: ../account/two_factor_authentication.md
[api]: ../../api/README.md
[ce-3749]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/3749
2018-03-17 18:26:18 +05:30
[ce-14838]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/14838
2017-09-10 17:25:29 +05:30
[container registry]: ../project/container_registry.md
[users]: ../../api/users.md
2018-03-17 18:26:18 +05:30
[usage]: ../../api/README.md#personal-access-tokens