KB001702 - How to configure OAuth in K2

  • 16 February 2021
  • 0 replies
  • 1288 views

Badge +5
 

How To: Configure OAuth in K2

KB001702

 
PRODUCT
K2 Cloud
K2 Five
K2 blackpearl
BASED ON
K2 blackpearl 4.6.8

 

Configuring a Service Instance to Use a Custom OAuth Resource

  • Information about configuring OAuth in K2 Five is available in the K2 Five User Guide.
  • K2 Cloud uses Open ID Connect (OIDC) to authenticate and authorize users. If you were using OAuth in K2 Cloud, or need to use OAuth in a new application that uses the K2 APIs, you’ll need to configure Postman and/or your code to use new client IDs and redirect URIs/Auth URLs. See the article How to retrieve client IDs and Redirect URIs for use in OAuth against K2 APIs for more detail.

OAuth is available as an authentication mode when using many of the SmartObject Service Brokers that ship with K2.

  • This authorization mode allows you to connect to OAuth-enabled services such as SalesForce, LinkedIn, Twitter and other systems that use OAuth as an authorization mechanism. (To learn more about OAuth, please see the wikipedia article on OAuth.)
  • Authorization Code Flow (vs. Implicit Grant Flow, typically used with Javascript scenarios) allows you to authenticate and then authorize in two separate but related flows.
  • Not all third-party OAuth flows adhere to the OAuth 2.0 specification. If the service you're connecting to deviates significantly from OAuth 2.0, K2 may not be able to effectively handle the flow. Look at the provider's documentation and test with K2 in a non-production environment to determine if the flow works as expected. 

In order to connect to OAuth enabled services with a SmartObject service broker you need to configure an OAuth Resource Type and an OAuth Resource. The set up consists of the following steps:

  1. Configure the external OAuth-enabled service and determine its settings.
  2. Add a new K2 OAuth Resource Type and define the Resource Type Parameters.
  3. Add and configure a new K2 OAuth Resource based on the type you created in Step 2 and provide values for the parameters.
  4. Add and configure a new K2 SmartObject Service Instance to connect using the OAuth resource you created in Step 3.
  5. Finally, you generate SmartObjects that you can use in forms and workflows.

 

You may use the K2 Management link in the K2 App (Authentication > OAuth > Resource Types) or the K2 Management site directly to configure the K2 OAuth settings.

 

 

Step1: Configure the external OAuth-enabled service and obtain OAuth settings

Although OAuth2 is an industry standard authorization framework, each OAuth2 implementation can vary slightly in regard to the parameters used during the token flows. For this reason, the configuration you must do varies between OAuth-based services. The first step is to determine what parameters and values you need to pass to the external OAuth resource for (1) authorization, also known as the access token, (2) token requests, and (3) refresh requests.

 

K2 OAuth support is limited to OAuth 2.0 and closely follows The OAuth 2.0 Authorization Framework RFC from the Internet Engineering Task Force. Specifically look at page 23 for information on OAuth parameters and how they are designed to be used.

For example, the Azure Active Directory OAuth2 implementation uses an encrypted ‘cliend_id’ parameter for Authorization requests, Token requests, and Refresh requests. It also uses the following parameters:

  • grant_type
  • api_version
  • scope
  • client_secret
  • resource
  • entity_id
  • response_type
  • redirect_uri

These parameters make up the OAuth resource type configuration, while specific values for the parameters make up the resource configuration.

 

As another example, SalesForce's OAuth2 implementation uses the following parameters: client_secret, redirect_uri, client_id, response_type and grant_type. These properties make up the external OAuth resource configuration, and to obtain these parameters and the values required for the parameters, you must configure Authorization in your SalesForce environment.

 

Most services describe at least two stages for successful authorization:

  1. The client (K2) sends an authorization request.
  2. The service replies with an authorization response.
  3. The client (K2) then submits a token request along with values received in the previous step.
  4. Finally, the service replies with a token response. Successive calls from K2 to the service will include this token.

 

Many services also expire tokens after a set amount of time and accept a refresh request to obtain a new token.

For most OAuth enabled services, like LinkedIn or Twitter, you first need to create an application on their platform, which is the integration entry point. As a part of creating the application, you receive an application ID and a client secret along with the endpoint URI. Once you have the parameters and the application configuration values, you are ready to create the K2 OAuth Resource Type and OAuth Resource.

See the download for this article for additional documents that describe sample OAuth settings for certain services.

Step 2: Add a new OAuth Resource Type

If your K2 installation does not already contain a Resource Type for the service you want to connect to, you must create a new Resource Type (think of the Resource Type as a container for the parameters required to connect to a particular service). To get to the K2 OAuth Resource Type configuration page:

  1. Open K2 Management and go to Authentication > OAuth > Resource Types
  2. Add a new Resource Type using the information and parameters identified from the external OAuth resource by clicking New
  3. Enter a Name and Description to identify the external OAuth Resource Type. The Name is usually the name of the service you wish to connect to (e.g. SalesForce or LinkedIn) since parameters are usually specific to the service.
  4. Click OK to save the new OAuth Resource Type.
Image

 

(Extensions are used to handle any scenarios that are not covered by the OAuth2 specification. SharePoint, for example, uses a Server-to-Server, certificate-based token in on-premises installations which is not part of the OAuth2 specification and therefore an extension is used for additional processing in this scenario.)

Define the Resource Type Parameters for the OAuth Resource Type

Once you have added the Resource Type, you can add the parameters to the Resource Type. These definitions create the communication strings that are sent to and received from the external OAuth URI. You add the parameters and their usage configurations in the Resource Type Parameters table. You do not provide values at this point, such as for client_id or client_secret, just the parameter names. The Resource Type defines the default settings and values used by all OAuth resources of this type. You specify your client- or application-specific values when you create the new OAuth Resource.

  1. With the new OAuth Resource Type you created in Step 2 selected in the Resource Types table, click New in the Resource Type Parameters table. You need to add each parameter you've identified to this table.
  2. Enter the name of the parameter (for example ‘client_id’) in the Parameter Name text box. The value you enter must match the name of the parameter defined by the external service.
  3. Add a description and set Default Values, if necessary. Use the checkboxes to indicate what stage of the OAuth flow the parameter is used for, per the OAuth requirements of the external service.
    Image
  4. Click OK to save the parameter.

Repeat these steps until all OAuth parameters are defined.

 

If your OAuth resource requires or otherwise allows for a 'code' or 'state' parameter, do not configure it here. K2 automatically adds a state parameter consisting of the primary credential ID and the OAuth resource ID in order to map it back to the correct person and resource when the authorization call completes. Adding a state parameter causes the call to fail.

 

Step 3: Add and configure a new OAuth Resource

Once all of the required OAuth communication string parameters have been added to the OAuth Resource Type definition, you can create and configure the OAuth Resource.

  1. In the OAuth node, click Resources.
  2. On the Resources page, click New.
  3. Enter a Name and Description to identify the specific OAuth resource.
  4. Enter the Authorization Endpoint URI and the Token Endpoint URI.
  5. Click OK to save the new OAuth resource.
Image

Configure the OAuth Resource Parameters values

In the OAuth Resources table that appears when you select your new resource, configure the Resource Parameters for the resource.

  1. From the Parameter Name drop-down list, select the Parameter to configure. (This list is populated with the parameters you specified when you created the Resource Type)
  2. Enter a value for the Authorization Value, Token Value, and/or Refresh Value.
  3. Click OK
  4. Repeat steps 1-3 until you've configured all values.

Image

Step 4: Add and configure a new K2 SmartObject Service Instance

Once you've completed the OAuth Resource and its parameter values, the final step is to link the OAuth Resource with the external OAuth service using a SmartObject Service Instance. This ties the line-of-business SmartObjects to the service, which allows K2 and the external OAuth service to securely communicate.

  1. In K2 Management, open the Integration node.
  2. Click Service Instances.
  3. On the Service Instances page, click Add.
  4. In the Service Instance top section, enter a Display Name and Description that identify this connection.
  5. Select the Endpoint Service Type used to communicate with the external OAuth resource (WCF, WebService, REST, or SharePoint).
  6. In the Service Authentication section, select OAuth from the Authentication Mode drop down.
  7. In the OAuth Resource Name drop-down, select the OAuth Resource you created.
  8. In the Service Keys section, configure the service instance settings (for example, enter the WebService URL if you are configuring an Endpoint WebService Instance). If you're using the REST broker, you must also specify the local or online path to a Swagger (OpenAPI) descriptor.
    Image
  9. Click OK at the bottom of the Configure Service Instance page to save the new instance. At this point, you may be prompted to log in to the service and you may also see an Authorization Succesful page that you can close.

Step 5: Using the External Resource

You can now create SmartObjects, for use in forms and workflows, for the service objects found when you created the instance. SmartObject methods execute requests to the service and initiate the OAuth token flow to authenticate, authorize, and interact with the service.

Also see:

 


0 replies

Be the first to reply!

Reply