-
Notifications
You must be signed in to change notification settings - Fork 390
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
Days 9-12 API Method: PUT Issue #21
Comments
Should have read the CLOSED issues -- PUT requests require a trailing slash, duh :| |
Thanks, glad you found the fix @gloc-mike I should probably update the video to point that out for the rest of the students. :) |
Re-opening issue to update the README to prevent this confusion. |
updated README, thanks again @gloc-mike |
Thank you @bbelderbos and @gloc-mike ! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am working through "Days 9-12 API Star" in the 100 Days of Web Python course and I am having issues with the PUT method.
I have cross checked my code against the GitHub version and my code looks logically the same but when I test the PUT method using Postman the 'update_car' function is not called/executed.
I have added print statements to the 'update_car' function to confirm this and indeed there is nothing printed in the console. Adding a print to the 'get_car' function however does print to the console.
My sequence of testing is the some as the video i.e. submit a GET request from Postman (for id 55); the submit the PUT request with updated parameters in the body of the request.
I have created a Git of the server output: https://gist.github.com/gloc-mike/03d1b7eda91b3a07ced3c6efa4ce4d34
In that you can see that the GET request was submitted and the print statement shows id 55; then when I submit the PUT request, the server responds with a 302 (redirect?), does not print my debug messages and then performs a GET request (system generated).
I'm on Mac; PyCharm (2019.3.1); virtual environments pipenv and pyenv; Pyton 3.7.4; apistar version is the recommended version. Also tried running it from the terminal (to remove PyCharm from the equation) but I get the same results.
There is a setting in Postman:
which I have tried turning off (default is on) but apart from that nothing else has been changed in Postman.
The PUT request from Postman:
My
pipfile
:My version of
app.py
sans the delete method:Any help with how I can trace this issue would be greatly appreciated.
Thanks
Michael
The text was updated successfully, but these errors were encountered: