PageRenderTime 38ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/doc/integration/twitter.md

https://gitlab.com/mitio/gitlab-ce
Markdown | 79 lines | 51 code | 28 blank | 0 comment | 0 complexity | fff242dfe7113352b7af093520f9761c MD5 | raw file
Possible License(s): CC-BY-3.0
  1. # Twitter OAuth2 OmniAuth Provider
  2. 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.
  3. 1. Sign in to [Twitter Application Management](https://apps.twitter.com/).
  4. 1. Select "Create new app"
  5. 1. Fill in the application details.
  6. - Name: This can be anything. Consider something like "\<Organization\>'s GitLab" or "\<Your Name\>'s GitLab" or
  7. something else descriptive.
  8. - Description: Create a description.
  9. - Website: The URL to your GitLab installation. 'https://gitlab.example.com'
  10. - Callback URL: 'https://gitlab.example.com/users/auth/twitter/callback'
  11. - Agree to the "Developer Agreement".
  12. ![Twitter App Details](twitter_app_details.png)
  13. 1. Select "Create your Twitter application."
  14. 1. Select the "Settings" tab.
  15. 1. Underneath the Callback URL check the box next to "Allow this application to be used to Sign in with Twitter."
  16. 1. Select "Update settings" at the bottom to save changes.
  17. 1. Select the "Keys and Access Tokens" tab.
  18. 1. You should now see an API key and API secret (see screenshot). Keep this page open as you continue configuration.
  19. ![Twitter app](twitter_app_api_keys.png)
  20. 1. On your GitLab server, open the configuration file.
  21. For omnibus package:
  22. ```sh
  23. sudo editor /etc/gitlab/gitlab.rb
  24. ```
  25. For instalations from source:
  26. ```sh
  27. cd /home/git/gitlab
  28. sudo -u git -H editor config/gitlab.yml
  29. ```
  30. 1. See [Initial OmniAuth Configuration](omniauth.md#initial-omniauth-configuration) for initial settings.
  31. 1. Add the provider configuration:
  32. For omnibus package:
  33. ```ruby
  34. gitlab_rails['omniauth_providers'] = [
  35. {
  36. "name" => "twitter",
  37. "app_id" => "YOUR_APP_ID",
  38. "app_secret" => "YOUR_APP_SECRET"
  39. }
  40. ]
  41. ```
  42. For installations from source:
  43. ```
  44. - { name: 'twitter', app_id: 'YOUR_APP_ID',
  45. app_secret: 'YOUR_APP_SECRET' }
  46. ```
  47. 1. Change 'YOUR_APP_ID' to the API key from Twitter page in step 11.
  48. 1. Change 'YOUR_APP_SECRET' to the API secret from the Twitter page in step 11.
  49. 1. Save the configuration file.
  50. 1. Restart GitLab for the changes to take effect.
  51. 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.