Replies: 1 comment
-
@wsw70 Have you tried this |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Summary: I would like to add verbatim
locate="Paris,France"
as a parameter to a GET callConsider the following code:
My intent was to have the following request:
https://geocode.xyz?auth=XXX&json=1&locate="Paris,France"
but the URI that is actually sent ishttps://geocode.xyz?auth=XXX&json=1&locate=%22Paris%2CFrance%22
.I did all kinds of attempts to force the quotes and comma in the call, but they always get encoded. Can I use
resty
to make such a call?Beta Was this translation helpful? Give feedback.
All reactions