You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
need encoded URL when passing the service URL.
url.args['service'] = service_url
might be
url.args['service'] = urllib.parse.quote(service_url)
to pass/back same service URL to Location header during CAS authencitaton.
The text was updated successfully, but these errors were encountered:
There is a cas issue about file or directory path contains i18n chars.
apereo/dotnet-cas-client#18
On osf.io:
https://github.com/RCOSDP/RDM-osf.io/blob/1a72c8581997904e545fd1c0d35abd30d7bc4c17/framework/auth/cas.py#L78
need encoded URL when passing the service URL.
url.args['service'] = service_url
might be
url.args['service'] = urllib.parse.quote(service_url)
to pass/back same service URL to Location header during CAS authencitaton.
The text was updated successfully, but these errors were encountered: