django-lti-provider
django-lti-provider copied to clipboard
There are some errors in the Readme for the part of "Using a cookie based session".
trafficstars
There is an error in the Readme related to the Django setting SESSION_COOKIE_SAMESITE. According to the Django documentation, SESSION_COOKIE_SAMESITE should be a string.
The correct setting should be:
SESSION_ENGINE = "django.contrib.sessions.backends.signed_cookies"
SESSION_COOKIE_SAMESITE = 'None'
SESSION_COOKIE_SECURE = True