Use throttle_classes for spyne application for set rate limit
#653
Unanswered
chiragkanhasoft
asked this question in
Q&A
Replies: 4 comments 1 reply
|
I never used django so I don't know, really. Does the django example in the repository help? |
1 reply
|
If this is a Django issue, please seek help in Django's support channels. If this is a Spyne issue, please reply with a working code sample that reproduces the issue, its output and what makes you think that the code "doesn't work" in that output. |
0 replies
|
@plq , this is not a django issue, how to use decorator with spyne Service. |
0 replies
|
@plq , This is django's django view which is working |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
I want to use throttle_classes for my API which has spyne application, i found below link to implement it in url.py file, but it is not working for spyne DjangoView.
Link for use classes in URL
https://stackoverflow.com/questions/60666418/remove-authentication-and-permission-for-specific-url-path
url(
r"^vapi/",
(permission_classes([IsAuthenticated])(vapi_view.vapp)).as_view(application=vapi_view.vapp),
),
All reactions