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
Some OAuth endpoints (like stackoverflow) do not like the parameters passed with URL encoding. since OAuth->uri() uses http_build_query(), all URIs generated will have invalid characters. This specifically affects access_token and key parameters.
The text was updated successfully, but these errors were encountered:
Maybe use http_build_query's enc_type = PHP_QUERY_RFC3986 for that purpose (only escape spaces) and set this as instance var, because the request-method uses http_build_query too?
Sidenote: please clean up your commit.
Some OAuth endpoints (like stackoverflow) do not like the parameters passed with URL encoding. since OAuth->uri() uses http_build_query(), all URIs generated will have invalid characters. This specifically affects
access_token
andkey
parameters.The text was updated successfully, but these errors were encountered: