You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We had an issue where we were decoding a JSON object, we were getting a different value than what we were seeing in Proxyman. Our JSON response was shown as having
"value": true
but our decoded object had
value: false
We eventually discovered that our JSON actually had a bug, and was:
"value": false,
"value": true
Proxyman was only showing one instance of "value", even though there were two in the JSON, and our decoding was catching the first value.
After we found this, we were eventually able to determine that if we looked at the 'RAW' view of the request, we saw the duplicate field.
Why this feature/change is important?
Proxyman is our first go-to when we have unexpected interactions with the API. In prettifying the JSON, it lost important information that would have made debugging the issue much easier
The text was updated successfully, but these errors were encountered:
Even if the prettified JSON can't show it, if there was a message somewhere saying "This JSON has duplicate keys. View raw to see full JSON response" would be helpful in cases like this.
Description
We had an issue where we were decoding a JSON object, we were getting a different value than what we were seeing in Proxyman. Our JSON response was shown as having
but our decoded object had
We eventually discovered that our JSON actually had a bug, and was:
Proxyman was only showing one instance of "value", even though there were two in the JSON, and our decoding was catching the first value.
After we found this, we were eventually able to determine that if we looked at the 'RAW' view of the request, we saw the duplicate field.
Why this feature/change is important?
Proxyman is our first go-to when we have unexpected interactions with the API. In prettifying the JSON, it lost important information that would have made debugging the issue much easier
The text was updated successfully, but these errors were encountered: