NodeRED Bypass no jwt env variable, no credentials in url

Hello all,

Trying to bypass NodeRED. Tried following this post: HTTP In to OpenRPA - #5 by Allan_Zimmermann.
_

Getting this error:
raise ValueError(“No jwt environment variable and no credentials in url”)
ValueError: No jwt environment variable and no credentials in url
_

Checked the openiap API documentation.
_


_

How do I work with this?
What is apiurl field?
I installed OpenFlow NodeRED via docker.
_
In python, I am using requests package to send out user input to OpenRPA bot via NodeRED.
_
I am using the “http in” activity in NodeRED to get input via api from Python.

        url = "https://steep-night-6704.app.openiap.io/data12"
        data = {"menuvalue": f"{chosen_entry}"}
        response = requests.post(url, json=data)

_
Now I wish to bypass this and send data directly to the bot.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.