I implemented google authentication in my android app. I need to send gmail id, username to my server for account authentication. Everything was working fine until I tried to login with a Bengali username.
Here is my code to access sever
HttpAsyncTaskCheckAuth checkAuth = new HttpAsyncTaskCheckAuth(SignUpActivity.this);
checkAuth.execute("http://www.server_address.com//auth/login?email=" +
email +
"&name=" + name +
"&logged_in=" + "true");
Here I an getting email and name from google plus authentication in android. How can I solve this language issue? Do I need to parse the name(user name) in any international formate so that the server can proceed with it?
Please suggest me some solutions to get rid of this problem.