在viewset中配置
goods/views.py
from rest_framework.authentication import TokenAuthentication class GoodsListViewSet(ListModelMixin, GenericViewSet): ... authentication_classes = (TokenAuthentication,)
Last updated 4 years ago
Was this helpful?