I had a problem in version 0.233.1 where when a postgres node returned empty, I couldn’t access previous data, even checking the “Always Output Data” option, so I didn’t realize that the 0.234.0 update made it impossible downgrade, and updated.
now I have problem that:
using the “Basic Auth” credential type, the http request node does not work if the credential is dynamic, in this case an expression instead of being fixed, to confirm the bug I tested the same credential that I received dynamically and set it static (fixed ) and it works perfectly.
now I’m stuck, unable to downgrade and version 0.235.0 also has the same error.
Then in my workflow I have added a Set node before my HTTP Request node that sets a username and sets the password to the workflow execution id so it is something that changes.
Now in my test http request node I am just firing the request off to webhook.site to see what the value is and I can see there that they are being set correctly.
I did some tests here, and it still didn’t work, I stopped to analyze what we’re doing differently, and I found a way that works, but it’s not ideal for me.
you pulled the information in the json of the input data this way it works:
user: {{ $json[“DNS EVO”] }}
pass: {{ $json[“Token API EVO”] }}
if you look for credentials in a node, it doesn’t work.
I will give that a go in the morning and see if it works, it could be that the credential doesn’t know what the node is to get the data from if that is the case you could work around it by using a merge node to bring your credential to the node before you need it.