时间限流

REST_FRAMEWORK = {
'DEFAULT_THROTTLE_CLASSES': [
'rest_framework.throttling.AnonRateThrottle',
'rest_framework.throttling.UserRateThrottle',
],
'DEFAULT_THROTTLE_RATES': {
'user': '100/hour', # 认证用户每小时100次
'anon': '100/day', # 未认证用户每天能访问100次
},
}

posted @ 2020-11-21 19:50  啦-啦啦  阅读(93)  评论(0编辑  收藏  举报