LesPrimus
Results
2
comments of
LesPrimus
Faced the same issue before... Take a look at this setting for the resource server. RESOURCE_SERVER_TOKEN_CACHING_SECONDS The number of seconds an authorization token received from the introspection endpoint remains valid....
Same problem here... But with the read_only=True parameter the error is gone... Like this: ``` class RecursiveModelSerializer(serializers.ModelSerializer): parent = RecursiveField(allow_null=True, read_only=True) class Meta: model = RecursiveModel fields = ('id', 'name',...