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

180 lines
8.5 KiB
Markdown
Raw Normal View History

2019-10-12 21:52:04 +05:30
---
type: concepts, howto
2020-06-23 00:09:42 +05:30
stage: Manage
group: Access
2021-02-22 17:27:13 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2019-10-12 21:52:04 +05:30
---
2021-10-27 15:23:28 +05:30
# Personal access tokens **(FREE)**
2017-09-10 17:25:29 +05:30
2021-10-27 15:23:28 +05:30
> - Introduced in GitLab 12.6: [Notifications for expiring tokens](https://gitlab.com/gitlab-org/gitlab/-/issues/3649).
> - Introduced in GitLab Ultimate 12.6: [Token lifetime limits](https://gitlab.com/gitlab-org/gitlab/-/issues/3649).
> - Introduced in GitLab 13.3: [Additional notifications for expiring tokens](https://gitlab.com/gitlab-org/gitlab/-/issues/214721).
> - Introduced in GitLab 14.1: [Prefill token name and scopes](https://gitlab.com/gitlab-org/gitlab/-/issues/334664).
2017-09-10 17:25:29 +05:30
2021-09-30 23:02:18 +05:30
If you're unable to use [OAuth2](../../api/oauth2.md), you can use a personal access token to authenticate with the [GitLab API](../../api/index.md#personalproject-access-tokens). You can also use a personal access token with Git to authenticate over HTTP.
2017-09-10 17:25:29 +05:30
2021-06-08 01:23:25 +05:30
In both cases, you authenticate with a personal access token in place of your password.
2017-09-10 17:25:29 +05:30
2021-09-30 23:02:18 +05:30
Personal access tokens are required when [Two-Factor Authentication (2FA)](account/two_factor_authentication.md) is enabled.
2020-05-24 23:13:21 +05:30
2021-09-30 23:02:18 +05:30
For examples of how you can use a personal access token to authenticate with the API, see the [API documentation](../../api/index.md#personalproject-access-tokens).
2020-05-24 23:13:21 +05:30
2021-09-30 23:02:18 +05:30
Alternately, GitLab administrators can use the API to create [impersonation tokens](../../api/index.md#impersonation-tokens).
2021-06-08 01:23:25 +05:30
Use impersonation tokens to automate authentication as a specific user.
2017-09-10 17:25:29 +05:30
2021-06-08 01:23:25 +05:30
## Create a personal access token
2017-09-10 17:25:29 +05:30
2021-06-08 01:23:25 +05:30
You can create as many personal access tokens as you like.
2017-09-10 17:25:29 +05:30
2021-03-11 19:13:27 +05:30
1. In the top-right corner, select your avatar.
1. Select **Edit profile**.
1. In the left sidebar, select **Access Tokens**.
2021-06-08 01:23:25 +05:30
1. Enter a name and optional expiry date for the token.
1. Select the [desired scopes](#personal-access-token-scopes).
2021-03-11 19:13:27 +05:30
1. Select **Create personal access token**.
2017-09-10 17:25:29 +05:30
2021-06-08 01:23:25 +05:30
Save the personal access token somewhere safe. After you leave the page,
you no longer have access to the token.
2017-09-10 17:25:29 +05:30
2021-09-30 23:02:18 +05:30
### Prefill personal access token name and scopes
You can link directly to the Personal Access Token page and have the form prefilled with a name and
list of scopes. To do this, you can append a `name` parameter and a list of comma-separated scopes
to the URL. For example:
```plaintext
https://gitlab.example.com/-/profile/personal_access_tokens?name=Example+Access+token&scopes=api,read_user,read_registry
```
2021-06-08 01:23:25 +05:30
## Revoke a personal access token
2017-09-10 17:25:29 +05:30
2021-06-08 01:23:25 +05:30
At any time, you can revoke a personal access token.
1. In the top-right corner, select your avatar.
1. Select **Edit profile**.
1. In the left sidebar, select **Access Tokens**.
1. In the **Active personal access tokens** area, next to the key, select **Revoke**.
2020-07-28 23:09:34 +05:30
2021-06-08 01:23:25 +05:30
## View the last time a token was used
2020-07-28 23:09:34 +05:30
2021-06-08 01:23:25 +05:30
Token usage is updated once every 24 hours. It is updated each time the token is used to request
[API resources](../../api/api_resources.md) and the [GraphQL API](../../api/graphql/index.md).
2017-09-10 17:25:29 +05:30
2021-06-08 01:23:25 +05:30
To view the last time a token was used:
2017-09-10 17:25:29 +05:30
2021-06-08 01:23:25 +05:30
1. In the top-right corner, select your avatar.
1. Select **Edit profile**.
1. In the left sidebar, select **Access Tokens**.
1. In the **Active personal access tokens** area, next to the key, view the **Last Used** date.
## Personal access token scopes
A personal access token can perform actions based on the assigned scopes.
2021-10-27 15:23:28 +05:30
| Scope | Access |
|--------------------|--------|
| `api` | Read-write for the complete API, including all groups and projects, the Container Registry, and the Package Registry. |
| `read_user` | Read-only for endpoints under `/users`. Essentially, access to any of the `GET` requests in the [Users API](../../api/users.md). |
| `read_api` | Read-only for the complete API, including all groups and projects, the Container Registry, and the Package Registry. ([Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/28944) in GitLab 12.10.) |
| `read_repository` | Read-only (pull) for the repository through `git clone`. |
| `write_repository` | Read-write (pull, push) for the repository through `git clone`. Required for accessing Git repositories over HTTP when 2FA is enabled. |
| `read_registry` | Read-only (pull) for [Container Registry](../packages/container_registry/index.md) images if a project is private and authorization is required. |
| `write_registry` | Read-write (push) for [Container Registry](../packages/container_registry/index.md) images if a project is private and authorization is required. ([Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/28958) in GitLab 12.10.) |
| `sudo` | API actions as any user in the system (if the authenticated user is an administrator). |
2021-06-08 01:23:25 +05:30
## When personal access tokens expire
2020-06-23 00:09:42 +05:30
2021-06-08 01:23:25 +05:30
Personal access tokens expire on the date you define, at midnight UTC.
- GitLab runs a check at 01:00 AM UTC every day to identify personal access tokens that expire in the next seven days. The owners of these tokens are notified by email.
- GitLab runs a check at 02:00 AM UTC every day to identify personal access tokens that expire on the current date. The owners of these tokens are notified by email.
- In GitLab Ultimate, administrators can
[limit the lifetime of personal access tokens](../admin_area/settings/account_and_limit_settings.md#limit-the-lifetime-of-personal-access-tokens).
- In GitLab Ultimate, administrators can choose whether or not to
2021-09-30 23:02:18 +05:30
[enforce personal access token expiration](../admin_area/settings/account_and_limit_settings.md#allow-expired-personal-access-tokens-to-be-used).
2021-06-08 01:23:25 +05:30
## Create a personal access token programmatically **(FREE SELF)**
You can create a predetermined personal access token
as part of your tests or automation.
Prerequisite:
- You need sufficient access to run a
[Rails console session](../../administration/operations/rails_console.md#starting-a-rails-console-session)
for your GitLab instance.
To create a personal access token programmatically:
1. Open a Rails console:
```shell
sudo gitlab-rails console
```
1. Run the following commands to reference the username, the token, and the scopes.
2021-09-30 23:02:18 +05:30
2021-06-08 01:23:25 +05:30
The token must be 20 characters long. The scopes must be valid and are visible
[in the source code](https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/auth.rb).
2021-09-30 23:02:18 +05:30
2021-06-08 01:23:25 +05:30
For example, to create a token that belongs to a user with username `automation-bot`:
```ruby
user = User.find_by_username('automation-bot')
token = user.personal_access_tokens.create(scopes: [:read_user, :read_repository], name: 'Automation token')
token.set_token('token-string-here123')
token.save!
```
This code can be shortened into a single-line shell command by using the
2020-11-24 15:15:51 +05:30
[Rails runner](../../administration/troubleshooting/debug.md#using-the-rails-runner):
2020-06-23 00:09:42 +05:30
```shell
sudo gitlab-rails runner "token = User.find_by_username('automation-bot').personal_access_tokens.create(scopes: [:read_user, :read_repository], name: 'Automation token'); token.set_token('token-string-here123'); token.save!"
```
2021-06-08 01:23:25 +05:30
## Revoke a personal access token programmatically **(FREE SELF)**
2020-06-23 00:09:42 +05:30
2021-06-08 01:23:25 +05:30
You can programmatically revoke a personal access token
as part of your tests or automation.
2020-06-23 00:09:42 +05:30
2021-06-08 01:23:25 +05:30
Prerequisite:
2020-06-23 00:09:42 +05:30
2021-06-08 01:23:25 +05:30
- You need sufficient access to run a [Rails console session](../../administration/operations/rails_console.md#starting-a-rails-console-session)
for your GitLab instance.
2020-06-23 00:09:42 +05:30
2021-06-08 01:23:25 +05:30
To revoke a token programmatically:
2020-06-23 00:09:42 +05:30
2021-06-08 01:23:25 +05:30
1. Open a Rails console:
```shell
sudo gitlab-rails console
```
2021-09-30 23:02:18 +05:30
2021-06-08 01:23:25 +05:30
1. To revoke a token of `token-string-here123`, run the following commands:
```ruby
token = PersonalAccessToken.find_by_token('token-string-here123')
token.revoke!
```
2020-06-23 00:09:42 +05:30
2021-06-08 01:23:25 +05:30
This code can be shortened into a single-line shell command using the
2020-11-24 15:15:51 +05:30
[Rails runner](../../administration/troubleshooting/debug.md#using-the-rails-runner):
2020-06-23 00:09:42 +05:30
```shell
sudo gitlab-rails runner "PersonalAccessToken.find_by_token('token-string-here123').revoke!"
```
2019-10-12 21:52:04 +05:30
<!-- ## Troubleshooting
Include any troubleshooting steps that you can foresee. If you know beforehand what issues
one might have when setting this up, or when something is changed, or on upgrading, it's
important to describe those, too. Think of things that may go wrong and include them here.
This is important to minimize requests for support, and to avoid doc comments with
questions that you know someone might ask.
Each scenario can be a third-level heading, e.g. `### Getting error message X`.
If you have none to add when creating a doc, leave this section in place
but commented out to help encourage others to add to it in the future. -->