Author: Abhishek Bathwal
The Blog will showcase how to create two API Ids for one single RAML. Creating two main flows. And configuring different auto discovery for both the flow with different API Id’s.
We will apply both Oauth 2.0 and ClientIdEnforcement policy to the application. For that we did the following:
- Â Created two APIs in the API manager from the same and common RAML. This will generate two API ids.
- Generate the flow from the RAML. Once the flow is generated we modified the flow by adding one more main flow in the application.
- Configured Auto-discovery for the individual main flows.
AML:

API Manager:

Http Configuration:

Main Flows and Configurations:
low 1:



Flow 2:



Global Configuration:

Properties file:

After all the configuration are done the implementation will look like as below:

ClientIdEnforcement is applied to Main flow 1 with API Id –Â 16425869
Oauth 2.0 is applied to Main flow 2 with API Id – 16450161
Now will perform test and check how the applications work with different scenarios:
For Flow 1:
With Client Credentials: (Client Id and Secret enabled)

Without Client Credentials: (Client Id and Secret disabled)

When the Valid Client Id and Secret was provided the API returned with a valid response but when the Client Id and Secret were not provided it returned an error.
For Flow 2:
With Oauth 2.0: (authorization enabled)

Without Oauth 2.0: (authorization disabled)

When the authorization with Valid Token was provided the API returned with a valid response but when the authorization was not provided it returned an error.
Note: We can also write custom policies to achieve the same but the blog is to showcase an additional option to achieve the same (But with two different URLs).Â