HttpMessageHandler Request Done and Error

Cristian: Can you please check if the issue still persists in the latest release (released today) ?

The issue still persists in IOS in the latest release!

Have you tried encoding the query in the Url string?

for example

var query = Uri.EncodeUri("?where={\"email\":\""+email.ToLower()+"\"}&count=1");
var createRequ = LogInReq.CreateRequest("GET","https://api.parse.com/1/users" + query);

I test it but nothing…

I test and debug in Xcode the Encoded URL directly in Parse website:

%3fwhere%3d%7b%22username%22%3a%22ckarmy%22%7d%26count%3d1

But dont work… I think that this type of encode dont work in Parse. If I put directly this url witout encode in Parse website or android works…

wups, sorry I think I made a mistake here in my example

var query = Uri.EncodeUri("{\"email\":\""+email.ToLower()+"\"}");
var createRequ = LogInReq.CreateRequest("GET","https://api.parse.com/1/users?where=" + query + "&count=1");

Im am looking into the Http API now for a solution for this kind of url encoding. Will keep this thread uptdate with the solution

Now works!!! Thanks for the patience! :slight_smile:

Please share any news. :slight_smile: