Hi everybody,
First of all thanks for the awesome tool and the community!
I’ve been here for a while in a “silent visitor, read-only mode”, but now it looks like I need somebody’s help and that’s why I decided to make a post here (though, I’m a bit shy \ doubting due to this is my very first post)
I’m struggling with REST API configuration for OpenMeteo API
They have one parameter which can have multiple values, it’s called “hourly”.
When I put only one value for it - everything is fine and gives me response 200:
But when I put 2 values separated with comma (which is the way described in their API docs), it gives me response 400 and error:
Why do I think it’s not a problem of the API itself, but something I do within AppGyver?
Because if I try URL with all that parameters in my browser, it works fine:
https://api.open-meteo.com/v1/forecast?latitude=52.52&longitude=13.41&hourly=weathercode,temperature_2m
One assumption I have - that appgyger is going URL encoding of the coma sign. Is there an option to supply an array of strings as a value for a query parameter?
Thanks.