Hi, I’m trying to make a simple app to perform api calls, which need authentication through a bearer. This bearer is created from a user id and api key, so the app is set up to allow the user to enter those 2:
The button should in theory pull the values from these 2 text input fields, and paste them in the api call’s URL where they are needed, and then paste the resulting bearer in the group text on the right. This is the ideal outcome in the workflow:
I followed this youtube tutorial to create this app, and all in theory should work fine: https://www.youtube.com/watch?v=QEQ8ncop8KM
In the video the guy uses an input slider, and sets the path to “InputsliderA 's value”. I figured I could do the same with text input, however the operator " 's value " doesn’t show up, only showing " 's height " and " 's width "
I created the custom state " 's value " and set the state type to text, however looking at the debugger this just does nothing.
(setting the operator to " 's width " does show an output of the width in this debugger, so I’m assuming that if I can get it to actually draw the values from the input text the thing will work perfectly fine)
When using a slider like in the example video, I am automatically shown the " 's value " operator and it works perfectly, but given the fact that an api key isn’t a number i can input in a slider, I have no idea how to work around this issue.
Any help is much appreciated.