PageRenderTime 22ms CodeModel.GetById 13ms RepoModel.GetById 0ms app.codeStats 0ms

/doc/integration/twitter.md

https://gitlab.com/wolfgang42/gitlab-ce
Markdown | 84 lines | 54 code | 30 blank | 0 comment | 0 complexity | 46ed357153ec6464af8b4ed6d2e53307 MD5 | raw file
  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://developer.twitter.com/apps).
  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](img/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](img/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 installations 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. [Reconfigure][] or [restart GitLab][] for the changes to take effect if you
  51. installed GitLab via Omnibus or from source respectively.
  52. 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.
  53. [reconfigure]: ../administration/restart_gitlab.md#omnibus-gitlab-reconfigure
  54. [restart GitLab]: ../administration/restart_gitlab.md#installations-from-source