We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have some enhancements with exceptions of Authentication. When I request to API without token in header, I would encounter the below error:
AttributeError: 'AnonymousUser' object has no attribute ...
That means request accessed to this view. So I think it's not secure and I have a sollution to fix that.
I will raise NotAuthenticated of rest_framework . Document here: link I had a pull request with that. Thank all.
NotAuthenticated
rest_framework
The text was updated successfully, but these errors were encountered:
solution for issue jazzband#148
cdae6d5
No branches or pull requests
I have some enhancements with exceptions of Authentication.
When I request to API without token in header, I would encounter the below error:
AttributeError: 'AnonymousUser' object has no attribute ...
That means request accessed to this view. So I think it's not secure and I have a sollution to fix that.
I will raise
NotAuthenticated
ofrest_framework
. Document here: linkI had a pull request with that.
Thank all.
The text was updated successfully, but these errors were encountered: