Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

Version 1 Next »

Postman:

to make HTTP request to get access token by postman, please follow these steps:

  1. Open Postman and create a new request by clicking on the "New" button in the top-left corner.

  2. Select the HTTP method as "POST" from the dropdown menu next to the URL input field.

  3. Go to the "Body" tab and select "x-www-form-urlencoded" as the data format.

  4. Add the following key-value pair in the body:

    • Key: grant_type, Value: client_credentials

    • Key: client_id, Value: <your_client_id>

  5. Click the "Send" button to make the request.

  6. Postman will display the response, including the access token.

Python code:

javascript code:

PHP code:

  • No labels