How I can set generic URLs to use in more then one API Calls to change in just one point ?
Set a variable in Globals. That should become available in all server actions.
Variable = set value
Where I can do this ?In global.json file ?
On the server connect panel on the right.
Click Globals at the top, then add step there.
Once done, save it.
Then in the actual API/Server Action where you have the API step, in URL part… Click data picker icon and you should see the set value variable set in Globals.
Thanks a lot for the help…
I didn’t find the place to insert a variable
Sorry for the post deletes I just wanted to make sure my answer was right as sids answer saying on the right threw me of my panel is on the left maybe that’s a setting or something I just got confused lol looks like I was in the right area ill just link you the docs though as screenshots are easier to follow
Typo.
When you have clicked Globals, you should see options in the panel below - input, steps etc. Add a step there.
Or, just take a look at the doc link shared above.
What is the server model you are using?
And what os the Wappler version?
Also, could you try to create a new Wappler project and see if it works there?
What are you trying to achieve here?
What do you want to store in host_rest?
My generic url is 161.148.157.57:8021
Im create a variable url in $_server
How I can set value to url to use in all difetent calls REST ?
Ok. It seems you don't have your basics right.
$_SERVER variables are meant to be read only and in the Value action you are storing a boolean as per expression.
You need to go through the learning materials.
Additionally you could take the Getting Started course:
Thanks, Can I define global static variables?
You mean a constant or a variable that is available globally for all your app at any point?
In nodejs you can use dotenv module and add it there. Then you can read it from the $_ENV variables.
Thanks a lot!