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
Similar to Issue #404, oauthlib.common.urldecode raises a ValueError if the provided query string contains a "'" character.
ValueError: Error trying to decode a non urlencoded string. Found invalid characters: set([u"'"]) in the string: 'url=Schr%C3%B6dinger's%20cat'. Please ensure the request/response body is x-www-form-urlencoded.
Per RFC 3986 section 3.4, query strings should be allowed to include the characters defined as pchar which in turn allows for characters defined as sub-delims. This includes the "'" character.
The text was updated successfully, but these errors were encountered:
Similar to Issue #404,
oauthlib.common.urldecode
raises a ValueError if the provided query string contains a "'" character.Per RFC 3986 section 3.4, query strings should be allowed to include the characters defined as
pchar
which in turn allows for characters defined assub-delims
. This includes the "'" character.The text was updated successfully, but these errors were encountered: