Lab 04 - Managing API Endpoints

Return to Workshop

Lab 4

Managing API Endpoints

Take control of your APIs


<img src=”../images/agenda-04.png “Login” width="900” />

Overview

Once you have APIs deployed in your environment, it becomes critically important to manage who may use them, and for what purpose. You also need to begin to track usage of these different users to know who is or is not succeeding in their usage. For this reason, in this lab, you will be adding management capabilities to the API to give you control and visibility of it’s usage.

Why Red Hat?

Red Hat provides one the leading API Management tools that provides API management services. The 3scale API Management solution enables you to quickly and easily protect and manage your APIs.

Lab Instructions

Step 1: Define your API Proxy

Your 3scale Admin Portal provides access to a number of configuration features.

  1. Open a browser window and navigate to 3Scale. Please check with you instructor if you need the link.

  2. Log into 3scale using your designated user and password. Click on Sign In.




  3. The first page you will land is the API Management Dashboard. Click on the API menu link.




  4. This is the API Overview page. Here you can take an overview of all your services. Click on the Integration link.




  5. Click on the edit integration settings to edit the API settings for the gateway.




  6. Keep select the APIcast deployment option in the Gateway section.




  7. Scroll down and keep the API Key (user_key) Authentication.




  8. Click on Update Service.

  9. Click on the add the Base URL of your API and save the configuration button.




  10. Leave the settings for Private Base URL, Staging Public Base URL, and Production Public Base URL as it is. We will come back to the screen to update the correct values in later step.

  11. Scroll down and expand the MAPPING RULES section to define the allowed methods on our exposed API.

    The default mapping is the root ("/") of our API resources, and this example application will not use that mapping. The following actions will redefine that default root ("/") mapping.




  12. Click on the Metric or Method (Define) link.




  13. Click on the New Method link in the Methods section.




  14. Fill in the information for your Fuse Method.

    • Friendly name: Get Locations

    • System name: locations_all

    • Description: Method to return all locations




  15. Click on Create Method.

  16. Click on the Add mapping rule link.




  17. Click on the edit icon next to the GET mapping rule.




  18. Type in the Pattern text box the following:

    /locations
    
  19. Select locations_all as Method from the combo box.




Step 2: Define your API Policies

Red Hat 3scale API Management provides units of functionality that modify the behavior of the API Gateway without the need to implement code. These management components are know in 3scale as policies.

The order in which the policies are executed, known as the “policy chain”, can be configured to introduce differing behavior based on the position of the policy in the chain. Adding custom headers, perform URL rewriting, enable CORS, and configurable caching are some of the most common API gateway capabilities implemented as policies.

  1. Scroll down and expand the POLICIES section to define the allowed methods on our exposed API.


    <img src=”../images/policies-01.png “Policies” width="900” />

    The default policy in the Policy Chain is APIcast. This is the main policy and most of the times you want to keep it.

  2. Click the Add Policy link to add a new policy to the chain.




    Out-of-the-box 3scale includes a set of policies you can use to modify the way your API gateway behaves. For this lab, we will focus on the Cross Origin Resource Sharing (CORS) one as we will use it in the consumption lab.

  3. Click in the CORS link to add the policy.


    <img src=”../images/policies-03.png “CORS” width="900” />

  4. Put your mouse over the right side of the policy name to enable the reorder of the chain. Drag and drop the CORS policy to the top of the chain.


    <img src=”../images/policies-04.png “Chain Order” width="900” />

  5. Now CORS policy will be executed before the APIcast. Click the CORS link to edit the policy.


    <img src=”../images/policies-05.png “Cors Configuration”” width="900” />

  6. In the Edit Policy section, click the green + button to add the allowed headers.


    <img src=”../images/policies-06.png “Add Allow Headers”” width="900” />

  7. Type Authorization in the Allowed headers field.


    <img src=”../images/policies-07.png “Add Authorization Header”” width="900” />

  8. Tick the allow_credentials checkbox and fill in with a star (*) the allow_origin text box.


    <img src=”../images/policies-08.png “Allow Origin”” width="900” />

  9. Click twice the green + button under ALLOW_METHODS to enable two combo boxes for the CORS allowed methods.

  10. Select GET from the first box and OPTIONS from the second box.


    <img src=”../images/policies-09.png “Allow Methods”” width="900” />

  11. Click the Submit button to save the policy configuration.

Step 3: Configure the Upstream Endpoint

  1. Scroll back to the top of the page. Fill in the information for accessing your API:

    Remember to replace the X with your user number.

    We are using the internal API service, as we are deploying our services inside the same OpenShift cluster.


    <img src=”../images/07-baseurl-configuration.png)

  2. Scroll down to the API Test GET request.

  3. Type in the textbox:

    /locations
    
  4. Click on the Update the Staging Environment to save the changes and check the connection between client, gateway and API.




    If everything works, you will get a green message on the left.

  5. Click on Back to Integration & Configuration link to return to your API overview.




  6. Click on the Promote v.1 to Production button to promote your configuration from staging to production.




Congratulations! You have configured 3scale access control layer as a proxy to only allow authenticated calls to your backend API. 3scale is also now:

Steps Beyond

In this lab we just covered the basics of creating a proxy for our API service. Red Hat 3scale API Management also allows us to keep track of security (as you will see in the next lab) as well as the usage of our API. If getting money for your APIs is also important to you, 3scale allows you to monetize your APIs with its embedded billing system.

Try to navigate through the rest of the tabs of your Administration Portal. Did you notice that there are application plans associated to your API? Application Plans allow you to take actions based on the usage of your API, like doing rate limiting or charging by hit (API call) or monthly usage.

Summary

You set up an API management service and API proxies to control traffic into your API. From now on you will be able to issue keys and rights to users wishing to access the API.

Notes and Further Reading

Return to Workshop