Twitter OAuth 2.0 OmniAuth Provider (FREE SELF)

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.

  1. Sign in to Twitter Application Management.

  2. Select "Create new app".

  3. Fill in the application details.

    • Name: This can be anything. Consider something like <Organization>'s GitLab or <Your Name>'s GitLab or something else descriptive.
    • Description: Create a description.
    • Website: The URL to your GitLab installation. https://gitlab.example.com
    • Callback URL: https://gitlab.example.com/users/auth/twitter/callback
    • Agree to the "Developer Agreement".

    Twitter App Details

  4. Select "Create your Twitter application."

  5. Select the "Settings" tab.

  6. Underneath the Callback URL check the box next to "Allow this application to be used to Sign in with Twitter."

  7. Select "Update settings" at the bottom to save changes.

  8. Select the "Keys and Access Tokens" tab.

  9. You should now see an API key and API secret (see screenshot). Keep this page open as you continue configuration.

    Twitter app

  10. On your GitLab server, open the configuration file.

    For Omnibus package:

      sudo editor /etc/gitlab/gitlab.rb

    For installations from source:

      cd /home/git/gitlab
    
      sudo -u git -H editor config/gitlab.yml
  11. See Configure initial settings for initial settings.

  12. Add the provider configuration:

    For Omnibus package:

      gitlab_rails['omniauth_providers'] = [
        {
          name: "twitter",
          # label: "Provider name", # optional label for login button, defaults to "Twitter"
          app_id: "YOUR_APP_ID",
          app_secret: "YOUR_APP_SECRET"
        }
      ]

    For installations from source:

    - { name: 'twitter',
        # label: 'Provider name', # optional label for login button, defaults to "Twitter"
        app_id: 'YOUR_APP_ID',
        app_secret: 'YOUR_APP_SECRET' }
  13. Change 'YOUR_APP_ID' to the API key from Twitter page in step 11.

  14. Change 'YOUR_APP_SECRET' to the API secret from the Twitter page in step 11.

  15. Save the configuration file.

  16. Reconfigure or restart GitLab for the changes to take effect if you installed GitLab via Omnibus or from source respectively.

On the sign in page there should now be a Twitter icon below the regular sign in form. Click the icon to begin the authentication process. Twitter asks the user to sign in and authorize the GitLab application. If everything goes well the user is returned to GitLab and signed in.