> For the complete documentation index, see [llms.txt](https://moluo.gitbook.io/notes/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://moluo.gitbook.io/notes/bian-cheng-xue-xi/python/django-rest-framework/7.3.viewsets-pei-zhi-ren-zheng-lei.md).

# 7.3.viewsets配置认证类

在viewset中配置

goods/views.py

```python
from rest_framework.authentication import TokenAuthentication

class GoodsListViewSet(ListModelMixin, GenericViewSet):
    ...
    authentication_classes = (TokenAuthentication,)
```
