I’m working on configuring a Web SaaS Connector where I need to retrieve a Bearer Token from a standard authentication URL provided by the target application.
Setting looks good to me. For token generation, can you try with cURL command once? It worked once for us when we are unable to generate token with API command
Can you try to give the ‘access_token’ in your configured response mapping a more unique value, and use that as the variable? So something like “accessTokenAppX”.
Thank you, team, for your response. I tried all the suggestions, but eventually, I realized it was a simple mistake on my part. The token I was receiving already included the prefix “Bearer”, but I was still passing it in the header as Bearer $application.accesstoken$. I’ve now corrected it by using just $application.accesstoken$ in the header, since the token already includes “Bearer”.