I've been trying setup AWS Cognito using JWK_URL, but not working. Is there a way to do this? My `settings.py` ``` python SIMPLE_JWT = { "JWK_URL": "https://cognito-idp.us-east-1.amazonaws.com/us-east-1_XXXXXXX/.well-known/jwks.json", "ALGORITHM": "RS256", "AUDIENCE": "<my cognito app client>", "ISSUER": "https://cognito-idp.us-east-1.amazonaws.com/us-east-1_XXXXXXX", } ``` `myview.py` ``` python from rest_framework_simplejwt.authentication import JWTAuthentication class TesteViewSet( mixins.ListModelMixin, viewsets.GenericViewSet, ): queryset = MyModel.objects.all() serializer_class = TesteSerializer authentication_classes = [JWTAuthentication] ``` What more I need to do? Tks in advance, :)