Django - DRF Advanced Features
Identify the error in this custom throttle class:
from rest_framework.throttling import SimpleRateThrottle
class CustomThrottle(SimpleRateThrottle):
scope = 'custom'
def get_cache_key(self, request, view):
return request.user.id
# settings.py
REST_FRAMEWORK = {
'DEFAULT_THROTTLE_RATES': {
'custom': '5/minute'
}
}