com.atlassian.confluence.content.render.xhtml.migration.exceptions.UnknownMacroMigrationException: The macro 'next_previous_links' is unknown.

Subscribe to an API

You subscribe to a published API before using it in your applications. Subscription enables you to receive access tokens and be authenticated to invoke the API.  

See the following topics for a description of the concepts that you need to know when subscribing to an API:

The examples here use the PhoneVerification API, which is created in section Create and Publish an API.

  1. Log in to the API Store (https://<hostname>:9443/store) and click on an API (e.g., PhoneVerification 1.0.0) to open it.  

    Tip: In a multi-tenanted API Manager setup, you can access any tenant's store using the URL http://<hostname>/Store?tenant=<tenant_name>.

  2. Note the subscription options on the API's Overview page.

  3. Click the My Applications menu and create a new application.

    Tip: Instead of creating a new application, you can also use the default application.

  4. Go back to the API's subscription options and select the application you just created, a tier and click Subscribe.

  5. Click the Go to My Subscriptions button when prompted. The subscriptions page opens.

  6. Select the application from the drop-down list and click Generate to create an application access token. You can use this token to invoke all APIs that you subscribe to using the same application.

    Tip: You can set a token validity period in the given text box. By default, it is set to one hour. If you set a minus value (e.g., -1), the token will never expire.

  7. Install cURL if it is not there in your environment. Note that cURL comes by default in some operating systems. You can also use any other REST client.

  8. Open the command line and execute the following cURL command:

    curl -H "Authorization: Bearer <access token>" -v '<API URL>'

    Be sure to replace the placeholders as follows:

    Here's an example:

    curl -H "Authorization :Bearer 8e64c4201d1c311c76a9c540856d1043" -v 'http://localhost:8280/phoneverify/1.0.0/CheckPhoneNumber?PhoneNumber=123456&LicenseKey=0'
  9. Note the result that appears on the command line. In this example, the phone number is invalid.

  10. Similarly, invoke the POST method using the following cURL command:

    curl -H "Authorization :Bearer <your token here>" --data "PhoneNumber=123456&LicenseKey=0" http://localhost:8280/phoneverify/1.0.0/CheckPhoneNumber

You have subscribed to an API and invoked it.

To unsubscribe from an API, go to the My Subscriptions menu in the API Store, select the application used for the subscription, find the API under the Subscribed APIs section and click the delete icon associated with it.

If you unsubscribe from an API and then resubscribe with a different tier, it takes approximately 15 minutes for the tier change to be reflected. This is because the older tier remains in the cache until it is refreshed periodically by the system.

com.atlassian.confluence.content.render.xhtml.migration.exceptions.UnknownMacroMigrationException: The macro 'next_previous_links2' is unknown.