Hello everyone! I set up basic authentication to receive a bearer token, it changes every hour. My task is to send a bearer token and response data from the AI agent to the server. How can I make the token not be static in the node storage and change every time the bearer token changes?
The head parameter does not work via {
“header”: “Authorization”,
“value”: “Bearer {{ $json.token }}”
}
In authentication, generic or predefined type returns an error and save only a static token.
In the http node, I have the server URL specified, the post method, the send body is the response from the AI bot, but where should I put the token in this node so that the changed bearer token is saved every hour?
In the HTTP Node, you can setup the authorization header like this:
Let me know if this works and feel free to mark this as solved if it did
2 Likes
thank you man!