django-lti-provider icon indicating copy to clipboard operation
django-lti-provider copied to clipboard

There are some errors in the Readme for the part of "Using a cookie based session".

Open justlonger opened this issue 1 year ago • 0 comments
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

justlonger avatar Dec 07 '23 02:12 justlonger