technicaltitch

Results 4 comments of technicaltitch

Pinning just Flask to 2.1.3 solved this for us.

> > Pinning just Flask to 2.1.3 solved this for us. > > 2.1.3 didn't work for me. Had to set it to 2.0.3. But yes the Flask version is...

I wanted to add a very important and often overlooked advantage to RapiDoc, and that is accessibility. I evaluated Swagger, Redoc, Slate and RapiDoc using webaim.org, and RapiDoc raised far...

A solution may be to use session authentication to get the token. ``` class ObtainAuthToken(APIView): authentication_classes = [SessionAuthentication] permission_classes = [IsAuthenticated] throttle_classes = [AnonRateThrottle] def post(self, request, *args, **kwargs): token...