An API creator blocks subscription to an API as a way of disabling access to it and managing its usage and monetization. A blocking can be temporary or permanent. You get an unblock
option to allow API invocations again.
...
Note |
---|
You block APIs by subscriptions. That is, a given user is blocked access to a given API subscribed to using a given application. If a user is subscribed to two APIs using the same application and you block access to only one of the APIs, s/he can still continue to invoke the other APIs that s/he subscribed to using the same application. Also, s/he can continue to access the same API subscribed to using different applications. Blocking happens in two levels:
When the API Gateway caching is enabled (it is enabled by default), even after blocking a subscription, consumers might still be able to access APIs until the cache expires, which happens approximately every 15 minutes. |
Let's get started. See the video tutorial here or a step-by-step walk-through of the video tutorial below.
Widget Connector | ||||||
---|---|---|---|---|---|---|
|
...
- 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 an existing application or create a new one.
- Click the APPLICATIONS menu, click the application that you used to subscribe to the API with (
DefaultApplication
in this example), go to its Production Keys tab, and re-generate its access token. By default, access tokens expire an hour after creation . application. Invoke both APIs using the access token you got in the previous step. 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 f1d4d097-ebcc-3f02-8d91-0bd4e882ffcd" 'https://gateway.api.cloud.wso2.com:443/t/companyn3/test1/1.0.0/CheckPhoneNumber?PhoneNumber=18006785432&LicenseKey=0'
You have subscribed to two APIs and invoked them successfully. Let's block one subscription and see the outcome.- Block an API.
- Sign back into the API Publisher.
- Click MANAGE SUBSCRIPTIONS. 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. - Click on the API that you need to block.
In this case, click on theTestAPI1
API. - Click Subscriptions to navigate to the managed subscription section.
- Click Block.
Note that the Block link immediately turns to Unblock, allowing you to activate the subscription back at any time.
- Click on the API that you need to block.
Invoke the APIs to test the blocked API.
- Sign back in to the API Store.
- Invoke the two APIs (
TestAPI1
andTestAPI2
) again.
Invoke the two APIs (
TestAPI1
andTestAPI2
) again.Note You might have to regenerate the access token for
DefaultApplication
as done in step 5step5, if the access token expiration time (1 hour by default) has passed since the last time you generated it.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.Tip Tip: You might still be able to invoke an API within 15 minutes after blocking a subscription, until the cache is renewed.
- Back in the API Store, click the APPLICATIONS menu, select the application that you used to subscribe to the two APIs earlier, click its Subscriptions tab, and note that your subscription is now blocked.
...
- Unblock the API.
- Go back to the API Publisher.
- Click on the respective API
In this case clickTestAPI1 1.0.0
. - Click Subscriptions and click Unblock corresponding to the respective subscription.
Make sure to click on the subscription that corresponds to the correct Application.
If you invoke
TestAPI1
again, you will notice that you can invoke the API as usual.Tip Tip: You might still be unable to invoke an API within 15 minutes after unblocking a subscription, until the cache is renewed.
You have subscribed to two APIs, blocked subscription to one and tested that you cannot invoke the blocked API.