Using Web API
Last updated
Last updated
After you've added a product for your app in the dashboard, go to the product page of the product you will be adding licensing to. You will need to do two things:
Note the product id for the product.
Download the 2048-bit RSA public key for the product.
RSA public key is needed to verify the signature of the activation token which you get on activating a license. Product id is the identifier of your product which is to be licensed.
To activate the license in your app using the license key, you need to send a POST request to the create activation API endpoint. Refer to the following for API endpoint details:
On successful activation, it returns an activation token. The activation token is basically a and you can easily verify its signature using any of the JWT libraries available for your language. You can then parse the JWT activation token to get the license details.
Each time, your app starts, you need to verify whether your license is already activated or not. This verification should occur locally by verifying the signature of the JWT activation token using the RSA public key.
You can then parse the JWT activation token to get the license details.
In order to sync the client changes with the server and vice-versa, you need to send a PATCH request frequently to the update activation endpoint. You can decide on the update frequency as per your requirement, or use the frequency interval set for the license (available in the JWT activation token). If you choose later you can control it from the dashboard. Refer to the following for API endpoint details:
In order to delete (deactivate) the activation from the machine, you need to send a POST request to the delete activation endpoint. Refer to the following for API endpoint details: