-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Variables field sent as [object Object]
in GET requests
#416
Comments
@macalinao Are you unable to execute a query? I think we've decided to send a JSON object instead of JSON string a while ago. |
Yes. What do you mean by sending a JSON object instead of JSON string? |
@macalinao oh sorry - I meant we had a discussion in #168 to change passing in variables in JSON object instead of string. |
ah, well it shouldn't be sending |
I can confirm I am having this same problem with Query Variables. It seems to be isolated to the HTTP GET method calls. HTTP POST calls will gladly pass on the proper Query Variables in the request body, but for HTTP GET method calls the query is passed on with the parameters while the variables are just a string "[object Object]". |
Can I get some clarification here on how to repro this exactly? |
I'm having the same issue: When inspecting the requests with charles and copying them as a cURL request I noticed I understand there's a lot of indirect stuff going on in tracing my issue, but I'm fairly confident it's the same one as described above. |
My "Query Variables" is being sent as an
[object Object]
. There is probably a.toString
call where there should really be aJSON.stringify
.The text was updated successfully, but these errors were encountered: