- Log in to the API Publisher.
- Create two APIs by the names
TestAPI1
andTestAPI2
and publish them to the API Store. - Log in to the API Store. Click the APIs menu and note that the two APIs are visible in the APIs page.
- Subscribe to both APIs using the same application. You can use the default application or create your own.
- Go to the My Subscriptions page and create an access token to the default application.
Invoke both APIs using the access token you got in the previous step.
You can use the API console, the integrated REST client or any other third-party client like cURL. In this example, we use the integrated REST client.We use cURL here. The command is,
Code Block curl -k -H "Authorization: Bearer <access token>" '<API URL>'
Be sure to replace the placeholders as follows:
- <access token>: Give the token generated in step 5
<API URL>: Go to the API's Overview tab in the API Store and copy the production URL and append the payload to it.
Here's an example:
Code Block curl -k -H "Authorization :Bearer 633d6db88e6ee42457e60ad1b736210" 'https://localhost:8243/test1/1.0.0/CheckPhoneNumber?PhoneNumber=18006785432&LicenseKey=0'
two APIs
You have subscribed to two APIs and invokedthem successfully. Let's block one subscription and see the outcome.
- Log back to the API Publisher.
- Click the Subscriptions menu to open the Subscriptions page. It shows all APIs/applications that each user is subscribed to.
- Block subscription for
TestAPI1
using theDefaultApplication
. Select theproduction and sandbox
option and click the Block link. - Note that the Block link immediately turns to Unblock, allowing you to activate the subscription back at any time.
- Log back to the API Store.
Invoke the two APIs (
TestAPI1
andTestAPI2
) again.Note You might have to regenerate the access token for
DefaultApplication
if the access token expiration time (1 hour by default) has passed since the last time you generated it. You can refresh the access token by going to the My Subscriptions page in the Store.- Note that you can invoke
TestAPI2
again but when you invokeTestAPI1
, it gives a message that the requested API is temporarily blocked. Neither the API creator nor any subscriber can invoke the API until the block is removed. - Go to the My Subscriptions page in the API Store, select the application that you used to subscribe to the API and note that your subscription is blocked.
- Go back to the API Publisher's Subscriptions page and unblock the subscription.
- Invoke
TestAPI1
again and note that you can invoke it as usual.
...