This document is about using GitSwarm as an OAuth authentication service provider to sign in to other services.
If you want to use other OAuth authentication service providers to sign in to GitSwarm, please see the OAuth2 client documentation.
OAuth provides to client applications a 'secure delegated access' to server resources on behalf of a resource owner. In fact, OAuth allows an authorization server to issue access tokens to third-party clients with the approval of the resource owner, or the end-user.
OAuth is mostly used as a Single Sign-On service (SSO), but you can find a lot of different uses for this functionality. For example, you can allow users to sign in to your application with their GitLab.com account, or GitLab.com can be used for authentication to your GitSwarm instance (see GitSwarm OmniAuth).
The 'GitSwarm Importer' feature is also using the OAuth protocol to give access to repositories without sharing user credentials to your GitLab.com account.
GitSwarm supports two ways of adding a new OAuth2 application to an instance. You can either add an application as a regular user or add it in the admin area. What this means is that GitSwarm can actually have instance-wide and a user-wide applications. There is no difference between them except for the different permission levels they are set (user/admin). The default callback URL is http://your-gitswarm.example.com/users/auth/gitlab/callback
In order to add a new application via your profile, navigate to Profile Settings > Applications and select New Application.
In the application form, enter a Name (arbitrary), and make sure to set up correctly the Redirect URI which is the URL where users will be sent after they authorize with GitSwarm.
When you hit Submit you will be provided with the application ID and the application secret which you can then use with your application that connects to GitSwarm.
To create an application that does not belong to a certain user, you can create it from the admin area.
Every application you authorized to use your GitSwarm credentials will be shown in the Authorized applications section under Profile Settings > Applications.
As you can see, the default scope api
is used, which is the only scope that GitSwarm supports so far. At any time you can revoke any access by just clicking Revoke.