OAuth 2.0
OAuth 2.0 is a protocol that lets external apps request authorization to private details in a user’s R-Service account without getting their password. This is preferred over Basic Authentication because tokens can be limited to specific types of data, and can be revoked by users at any time.
Before getting started, developers need to register their application in the Applications console of their My Profile section. A registered OAuth application is assigned a unique Client ID and Client Secret. The Client Secret should not be shared.
Depending on the use case, either the Authorization Code Grant or the Client Credentials Grant should be used:
- Authorization Code Grant Allows third-party applications to access data on behalf of users in R-Service after authorization of the application by these users.
- Client Credentials Grant Allows third-party machine-to-machine applications to access data in R-Service. To be able to use this, the grant type ‘Client credentials grant’ should be selected.
Service URL
In order to successfully perform OAuth requests, the R-Service application requires the use of a OAuth service URL that references the instance of a specific environment and region:
Instance | Environment | Region |
---|---|---|
https://oauth.r-service.tech |
Production | Global |
https://oauth.qa.r-service.tech |
Quality Assurance | Global |
https://oauth.demo.r-service.tech |
Demo | Global |