2020-10-29 11:09:12 -04:00
---
2022-05-12 23:08:13 -04:00
stage: Manage
group: Authentication and Authorization
2022-09-21 17:13:33 -04:00
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments
2020-10-29 11:09:12 -04:00
---
2022-06-25 08:08:11 -04:00
# Twitter OAuth 1.0a OmniAuth Provider **(FREE SELF)**
NOTE:
2022-10-04 14:08:15 -04:00
Twitter OAuth 2.0 support is [not supported ](https://gitlab.com/gitlab-org/gitlab/-/issues/366213 ).
2014-04-02 23:11:25 -04:00
2021-08-20 05:09:16 -04:00
To enable the Twitter OmniAuth provider you must register your application with
Twitter. Twitter generates a client ID and secret key for you to use.
2014-04-24 18:48:22 -04:00
2022-10-04 14:08:15 -04:00
## Create a new Twitter application
2022-08-08 08:09:28 -04:00
1. Sign in to [Twitter Application Management ](https://developer.twitter.com/apps ).
2014-04-24 18:48:22 -04:00
2022-10-04 14:08:15 -04:00
1. Select **Create new app** .
2014-04-24 18:48:22 -04:00
2019-07-08 19:14:29 -04:00
1. Fill in the application details.
2022-10-04 14:08:15 -04:00
- **Name**: This can be anything. Consider something like `<Organization>'s GitLab` , `<Your Name>'s GitLab` or
2019-07-08 19:14:29 -04:00
something else descriptive.
2022-10-04 14:08:15 -04:00
- **Description**: Create a description.
- **Website**: The URL to your GitLab installation. For example, `https://gitlab.example.com`
- **Callback URL**: `https://gitlab.example.com/users/auth/twitter/callback`
- **Developer Agreement**: Select **Yes, I agree** .
2014-04-24 18:48:22 -04:00
2019-07-08 19:14:29 -04:00
![Twitter App Details ](img/twitter_app_details.png )
2014-04-24 18:48:22 -04:00
2022-10-04 14:08:15 -04:00
1. Select **Create your Twitter application** .
## Configure the application settings
2014-04-24 18:48:22 -04:00
2022-10-04 14:08:15 -04:00
1. Select the **Settings** tab.
2014-04-24 18:48:22 -04:00
2022-10-04 14:08:15 -04:00
1. Underneath the **Callback URL** , select the **Allow this application to be used to Sign in with Twitter** checkbox.
2014-04-24 18:48:22 -04:00
2022-10-04 14:08:15 -04:00
1. Select **Update settings** to save the changes.
2014-04-24 18:48:22 -04:00
2022-10-04 14:08:15 -04:00
1. Select the **Keys and Access Tokens** tab.
2014-04-24 18:48:22 -04:00
2022-10-04 14:08:15 -04:00
1. Find your **API key** and **API secret** . Keep this tab open as you continue configuration.
2014-04-24 18:48:22 -04:00
2019-07-08 19:14:29 -04:00
![Twitter app ](img/twitter_app_api_keys.png )
2014-04-02 23:11:25 -04:00
2022-10-04 14:08:15 -04:00
## Configure your application on the GitLab server
2019-07-08 19:14:29 -04:00
1. On your GitLab server, open the configuration file.
2015-02-13 17:49:19 -05:00
2019-08-27 04:41:50 -04:00
For Omnibus package:
2015-02-13 17:49:19 -05:00
2020-01-30 10:09:15 -05:00
```shell
2019-07-08 19:14:29 -04:00
sudo editor /etc/gitlab/gitlab.rb
```
2015-02-13 17:49:19 -05:00
2019-07-08 19:14:29 -04:00
For installations from source:
2014-04-02 23:11:25 -04:00
2020-01-30 10:09:15 -05:00
```shell
2019-07-08 19:14:29 -04:00
cd /home/git/gitlab
2014-04-02 23:11:25 -04:00
2019-07-08 19:14:29 -04:00
sudo -u git -H editor config/gitlab.yml
```
2015-02-13 17:49:19 -05:00
2021-11-09 13:13:13 -05:00
1. See [Configure initial settings ](omniauth.md#configure-initial-settings ) for initial settings.
2015-02-13 17:49:19 -05:00
2022-10-04 14:08:15 -04:00
1. Add the provider configuration.
2015-02-13 17:49:19 -05:00
2019-08-27 04:41:50 -04:00
For Omnibus package:
2014-04-24 18:48:22 -04:00
2019-07-08 19:14:29 -04:00
```ruby
gitlab_rails['omniauth_providers'] = [
{
2021-11-19 04:13:48 -05:00
name: "twitter",
# label: "Provider name", # optional label for login button, defaults to "Twitter"
2022-10-04 14:08:15 -04:00
app_id: "< your_api_key > ",
app_secret: "< your_api_secret > "
2019-07-08 19:14:29 -04:00
}
]
```
2014-04-02 23:11:25 -04:00
2019-07-08 19:14:29 -04:00
For installations from source:
2014-04-02 23:11:25 -04:00
2020-03-03 22:08:50 -05:00
```yaml
2020-10-02 02:08:27 -04:00
- { name: 'twitter',
2021-11-19 04:13:48 -05:00
# label: 'Provider name', # optional label for login button, defaults to "Twitter"
2022-10-04 14:08:15 -04:00
app_id: '< your_api_key > ',
app_secret: '< your_api_secret > ' }
2019-07-08 19:14:29 -04:00
```
2014-04-24 18:48:22 -04:00
2022-10-04 14:08:15 -04:00
1. Change `<your_api_key>` to the API key from the Twitter **Keys and Access Tokens** tab.
2014-04-24 18:48:22 -04:00
2022-10-04 14:08:15 -04:00
1. Change `<your_api_secret>` to the API secret from the Twitter **Keys and Access Tokens** tab.
2014-04-24 18:48:22 -04:00
2019-07-08 19:14:29 -04:00
1. Save the configuration file.
2022-10-04 14:08:15 -04:00
1. For the changes to take effect, if you installed:
- Using Omnibus, [reconfigure GitLab ](../administration/restart_gitlab.md#omnibus-gitlab-reconfigure ).
- From source, [restart GitLab ](../administration/restart_gitlab.md#installations-from-source ).
2014-04-02 23:11:25 -04:00
2022-10-04 14:08:15 -04:00
On the sign-in page, find the Twitter option below the regular sign-in form. Select the option to begin the authentication process. Twitter asks you to sign in and authorize the GitLab application. After authorization,
you are returned to GitLab and signed in.