-
안드로이드에서 api gateway 호출시 urlencoding 문제dev/android 2019. 4. 5. 16:04
안드로이드에서 api gateway 호출시 url 에 멀티라인(\n) 문자가 들어갈 경우 다음과 같은 에러를 반환함.
Could not parse request body into json: Illegal unquoted character ((CTRL-CHAR, code 10)): has to be escaped using backslash to be included in string value\n
aws 포럼에서 발견한 내용으로 해결.
https://forums.aws.amazon.com/thread.jspa?threadID=225001
\n 을 \\n 으로 변경.