-
Notifications
You must be signed in to change notification settings - Fork 498
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
decode json response #167
Labels
Milestone
Comments
@rmccue It can be done using the |
@73SL4 Absolutely! We should have a different method in |
ccrims0n
added a commit
to ccrims0n/Requests
that referenced
this issue
Jun 3, 2016
* Add json() which returns decoded json from the response body if the response bosy is a valid json else throws an exception
ccrims0n
added a commit
to ccrims0n/Requests
that referenced
this issue
Jun 3, 2016
* Add json() which returns decoded json from the response body if the response bosy is a valid json else throws an exception
ccrims0n
added a commit
to ccrims0n/Requests
that referenced
this issue
Jun 3, 2016
* Add json() which returns decoded json from the response body if the response bosy is a valid json else throws an exception
@rmccue Please verify the PR. |
status ? |
jrfnl
pushed a commit
that referenced
this issue
Sep 18, 2021
* Add json() which returns decoded json from the response body if the response body is a valid json else throws an exception
jrfnl
pushed a commit
that referenced
this issue
Oct 4, 2021
* Add json() which returns decoded json from the response body if the response body is a valid json else throws an exception
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In the excellent Requests Python library, we can simply use the method
.json
to get the json decoded result. However, I can not do that with this library. Why not implement this?The text was updated successfully, but these errors were encountered: