Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  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 "Authorization" tab, from the "Type" dropdown menu, select "Basic Auth" since you are using the client ID and client secret for authentication..

  4. In the "Username" field, enter your client ID, In the "Password" field, enter your client secret.

    • Key: username, Value: <your_client_id>

    • Key: password, Value: <your_client_secret>

      Image RemovedImage Added

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

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

    • Key: grant_type, Value: client_credentials

    • Key: client_id, Value: <your_client_id>

      Image RemovedImage Added

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

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

    Image RemovedImage Added

...

Note

Please be cautious and ensure the confidentiality of your client ID and client secret. Treat these credentials as sensitive information and avoid sharing them publicly or storing them in insecure locations. If possible, consider using environment variables or secure storage mechanisms to store and retrieve these credentials securely.

...