gitlab-org--gitlab-foss/doc/integration/twitter.md

2.2 KiB

Twitter OAuth2 OmniAuth Provider

To enable the Twitter OmniAuth provider you must register your application with Twitter. Twitter will generate a client ID and secret key for you to use.

  1. Sign in to Twitter Developers area.

  2. Hover over the avatar in the top right corner and select "My applications."

  3. Select "Create new app"

  4. Fill in the application details.

  5. Select "Create your Twitter application."

  6. Select the "Settings" tab.

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

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

  9. Select the "API Keys" tab.

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

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

    cd /home/git/gitlab
    
    sudo -u git -H editor config/gitlab.yml
    
  12. Find the section dealing with OmniAuth. See Initial OmniAuth Configuration for more details.

  13. Under providers: uncomment (or add) lines that look like the following:

       - { name: 'twitter', app_id: 'YOUR APP ID',
         app_secret: 'YOUR APP SECRET' }
    
  14. Change 'YOUR APP ID' to the API key from Twitter page in step 11.

  15. Change 'YOUR APP SECRET' to the API secret from the Twitter page in step 11.

  16. Save the configuration file.

  17. Restart GitLab for the changes to take effect.

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 will ask the user to sign in and authorize the GitLab application. If everything goes well the user will be returned to GitLab and will be signed in.