Hub 1.0 Help

OAuth 2.0 Authorization

Hub implementation of OAuth 2.0 supports several authentication/authorization flow. To access resources of Hub itself and services connected to Hub, a client should obtain an access token. The flow that the client may use depends on:

  • What information the client has (service credentials / user credentials).
  • Where from the client access resources (from a browser / from the server side / from a standalone application).

What Flow to Use?

You develop...Flow to useRequired parametersAdditional requirement
A rich client web application with all authorization logic in browserImplicit flowservice idHandle in browser request with a grant from Hub
A web application with the authorization login on the server sideAuthorization Code flowservice id, service secretHandle request with a grant from Hub server on server side
A desktop or a mobile application able to request authorization token non-interactivelyRefresh Token flowservice id, service secretHandle request with a grant from Hub server on server side
A script that needs to access resources on behalf of itselfClient Credentials flowservice id, service secretNone
A script that needs to access resources on behalf of some userResource Owner Password Credentials flowservice id, service secret, username and passwordNone

What Information You Should Have

ParameterIs it required?Description
Client service IDAlwaysAn identifier (ID) of the service associated with the client in Hub.
Client service secretDepends on flowA secret for the service associated with the client in Hub.
ScopeAlways

An ID of the registered in Hub service associated with the resource server. For example, if the client wants to access issues in YouTrack, it should find out the id of YouTrack service in Hub.

The client can access more then one resource server with a single access token. In this case, the Scope is the space-separated list of the IDs of the services registered in Hub.

Client redirect URIDepends on flowAn URI at the client application that can handle response from authorization server (Hub).
UsernameDepends on flowEnd-user's username, or id, or email.
PasswordDepends on flowEnd-user's password.

Register Client as a Service

To enable authorization you should register your client as a Hub service. You can do it either in administrative UI or programmatically. Basically, you just send POST request on /services URL and get credentials of the newly created service in response.

Sample script for registering client as a service

The following sample script considers Hub to be installed to https://hub.company.com and a client OAuth 2.0 service - to https://myservice.company.com.

Request

POST /api/rest/services?fields=id,secret HTTP/1.1 Host: hub.company.com Accept: application/json Content-Type: application/json { "name": "My Service", "homeUrl": "https://myservice.company.com", "redirectUris": ["https://myservice.company.com/authorized"], "applicationName": "My Service", "vendor": "Company Inc.", "version": "1.0" }

Response

{ "id": "98071167-004c-4ddf-ba37-5d4599fdf319", "secret": "eAUyKgVfhSbV" }

You can later use service's id and secret for authorization.

Service in Hub can be either trusted or not. If a service is trusted, then it can access Hub resource servers on behalf of itself. Also, when a user is sent from the trusted service to authorize himself, the user sees no additional warning.

Last modified: 19 April 2016