• Do not create multi-accounts, you will be blocked! For more information about rules, limits, and more, visit the, Help page.
    Found a dead link? report button!
    Make this beautiful and clickable botton with link

Thread Summary

A user was having trouble retrieving a token using application/x-www-form-urlencoded in Bruno Script. The issue was addressed by checking several potential causes, including:

  • Incorrect header setup
  • Malformed request body
  • Incorrect authentication endpoint or method
  • Missing or incorrect authorization details

A sample Bruno Script was provided, demonstrating how to structure the request correctly. To resolve the issue, the user was advised to verify:

1. Request headers (Content-Type)
2. Body encoding (URL-encoded)
3. Endpoint URL
4. Required parameters (granttype, clientid, client_secret, scope)
5. HTTP method (POST)

By checking these factors, the user should be able to successfully retrieve a token using Bruno Script.
Back