Is it possible to see in the UI Builder what the API URL looks like at the end? Currently, unfortunately, I get a null value when I make an API call. Through the API URL Preview in the API Calls menu item, I can create the null value by entering incorrect variable values. However, I am wondering what values I am passing to the API within the UI Builder.
The API URL is the following:
https://api.pirateweather.net/forecast/[apikey]/[latlong]?&units=ca
In my case, one variable I need to pass to the API is the values for lat and long separated by a comma.
However, I don't know if "Current Device Location" is passing lat and long to the API URL in the correct form, as this returns a NULL.
I have also already tested what the current location looks like if I first store the location in the "user"-database and after that the API accesses the (in Firebase) user location. In both cases I get a NULL.
When I use the API URL Preview under API CALLS and enter the variables there, I get a correct response with values. So the API URL seems to work correctly.