官方文檔
settings.py配置
REST_FRAMEWORK = {  'DEFAULT_THROTTLE_CLASSES': (    'rest_framework.throttling.AnonRateThrottle',    'rest_framework.throttling.UserRateThrottle'  ),  'DEFAULT_THROTTLE_RATES': {    'anon': '100/day',    'user': '1000/day'  }}AnonRateThrottle:用戶未登錄請求限速,通過IP地址判斷
UserRateThrottle:用戶登陸后請求限速,通過token判斷
DEFAULT_THROTTLE_RATES 包括 second, minute, hour, day
引用樣例:
from rest_framework.response import Responsefrom rest_framework.throttling import UserRateThrottlefrom rest_framework.views import APIViewclass ExampleView(APIView):  throttle_classes = (UserRateThrottle,)  def get(self, request, format=None):    content = {      'status': 'request was permitted'    }    return Response(content)
總結
以上就是本文關于淺談Django REST Framework限速的全部內容,希望對大家有所幫助。感興趣的朋友可以繼續(xù)參閱本站其他相關專題,如有不足之處,歡迎留言指出。感謝朋友們對本站的支持!
新聞熱點
疑難解答