Passing Bearer token in Authorization header

Summary

Exploring how to correctly pass a Bearer token in the Authorization header, as the current implementation is not appending ‘Bearer’ before the token.


Question

hi, how can I pass Bearer token in Authorization header… access_token is returned from 1st(Parent) stream… it is passing Authorization: <token> instead of Authorization: Bearer <token>



This topic has been created from a Slack thread to give it more visibility.
It will be on Read-Only mode here. Click here if you want to access the original thread.

Join the conversation on Slack

["bearer-token", "authorization-header", "parent-stream"]

Transforming the value like this is not supported in the Inject Parent key into outgoing HTTP Request section, so to accomplish this you will need to disable that checkbox, then add a Request Header with key Authorization, and value Bearer {{ stream_partition.access_token }}

thanks a lot <@U02T7NVJ6A3> , it is working