Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

After the user returns to the client via the redirect URL, the RINT iHub will get the authorization code from the URL and use it to request an access token.

...

  1. Select Grant Type Authorization Code
  2. Copy the Callback url from RINT iHub authentication UI

Step 2. Register

...

iHub in the remote App

  1. Paste the Callback url into the remote app
  2. Copy & Paste the client id and client secret into the RINT iHub Authentication configuration

...

  1. Authorize url - used to make the concent and grant the authorization code
  2. Access token url - used for interchanging the authorization code to an access code. This is made behind the scence scenes when the system is interacting.
  3. Scope - used to determine what resources shall RINT iHub get access to.


Implicit

The Implicit grant type is a simplified flow that can be used by public clients, where the access token is returned immediately without an extra authorization code exchange step.

...

Since this involves the client asking the user for their password, it should not be used by third-party clients. In this flow, the user's username and password are exchanged directly for an access token.

...