Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

how to support chinese in http request body? #34

Open
denofiend opened this issue Jan 23, 2014 · 1 comment
Open

how to support chinese in http request body? #34

denofiend opened this issue Jan 23, 2014 · 1 comment

Comments

@denofiend
Copy link

how to support chinese in http request body?

@denofiend
Copy link
Author

    URL = http://example.com,
    Header = [],
    Type = "application/json",
    Content = "我是中文",

    Body = lists:concat(["{\"type\":\"0\",\"result\":[{\"url\":\"test.cn\",\"content\":\"", unicode:characters_to_list(Content), "\"}]}"]),
    lager:debug("URL:~p, Body:~p~n", [URL, Body]),
    HTTPOptions = [],
    Options = [],
    Response = httpc:request(post, {URL, Header, Type, Body}, HTTPOptions, Options),

but http request body received by http server is not 我是中文。
how to sovle this problem?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant