koush / ion

Android Asynchronous Networking and Image Loading
Other
6.29k stars 1.03k forks source link

How can I send Korean with the get String? #951

Open ghost opened 3 years ago

ghost commented 3 years ago

in android,

Ion.with(this) .load(url + user_name) .asString() .setCallback(new FutureCallback() { ... });

in node.js,

router.get('url/:user_name', function(req, res, next) { let user_name = req.params.user_name; console.log("print : ", user_name); });

it works, but node can't read Korean characters "print : ì ±ì¤" <- The letters are broken

How can I send Korean with the GET?