A simple request to the server to get a file is giving some issues, Here's the url,
https://dc2-vault.myvzw.com/dv/api/user/c107a6db69104a10bc247a28fb81131e/search?query=contentType:audio/* AND (genre like 'RoyalJatt.Com )')&sort=name+asc&start=1&count=2147483647
then i do this,
url = Uri.EscapeUriString(url);
i get,
https://dc2-vault.myvzw.com/dv/api/user/c107a6db69104a10bc247a28fb81131e/search?query=contentType:audio/*%20AND%20(genre%20like%20'RoyalJatt.Com%20)')&sort=name+asc&start=1&count=2147483647
The problem here is this,
the query looks for a file with Genre RoyalJatt.Com%20) which should have been RoyalJatt.Com%20%29
For some reason, it is omitting the ")"
What can i do to fix this ?