Closed noctera closed 3 years ago
Hi!
It seems that you discovered a flaw in RESTinio's implementation, named parameters like :param
and :session
are intended to be used in the path part of URL, e.g. inside /api/signIn
before the &
sign. Values in the query part of URL (after the &
sign) should be parsed and accessed via parse_query
or try_parse_query
functions (see the docs).
It also seems that your URL should look like /api/signIn?username=John&sessionId=Bla-Bla-Bla
Yeah my url should look like this. I will have a look at the doc you linked above
Good evening I have this lines of code
With
I am making the request call, but unfortunately I am getting
John%20Doe
out of the params list. Is there any function I can make it toJohn Doe
with an intern function, or do I have to program that.PS: Google is automatically filling in
%20
for a tabThanks in advance