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
When you pass in a request that uses , in the query params (which is how X handles user.fields etc) it is being transformed into %2C which causes those custom fields to fail to be fetched from X.
I was able to fix this locally by changing the following
def escape_query_params(uri)
URI(uri).tap do |u|
u.query = URI.encode_www_form(URI.decode_www_form(u.query)).gsub("%2C", ",") if u.query
end
end
The text was updated successfully, but these errors were encountered:
When you pass in a request that uses
,
in the query params (which is how X handlesuser.fields
etc) it is being transformed into%2C
which causes those custom fields to fail to be fetched from X.I was able to fix this locally by changing the following
The text was updated successfully, but these errors were encountered: