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
I've solved problem either by using UriFormat.UriEscaped, or fix GetQueryParameters method by q.Split(new char[] {'='}, 2). (Just one of this fix solved problem.)
Note: Such Uri construction, parsing and again construction is often source of problems. (My experience from several other applications.) Better to avoid it. Just construct the right Uri once and send it.
The text was updated successfully, but these errors were encountered:
It's pity to leave such popular project - about 120 stars, 30 forks. May you write it to the README.md, that you no longer actively develop this project? What about trying to find another maintainer?
If I send a pul request, will you merge it and release a new version?
Thanks
xmedeko
changed the title
MeasurementAnalyticsClient.AdjustUriBeforeRequest cut strings with contain equal char
MeasurementAnalyticsClient.AdjustUriBeforeRequest cuts strings with special chars
Jan 6, 2017
Sent strings are malformed in the
MeasurementAnalyticsClient.AdjustUriBeforeRequest
method, when a string contains chars=
or&
.E.g. sending
results in sending
label="My Label id"
only.I've solved problem either by using
UriFormat.UriEscaped
, or fixGetQueryParameters
method byq.Split(new char[] {'='}, 2)
. (Just one of this fix solved problem.)Note: Such Uri construction, parsing and again construction is often source of problems. (My experience from several other applications.) Better to avoid it. Just construct the right Uri once and send it.
The text was updated successfully, but these errors were encountered: