当前位置:  开发笔记 > 编程语言 > 正文

使用Go的POST失败但是使用curl

如何解决《使用Go的POST失败但是使用curl》经验,为你挑选了1个好方法。



1> JimB..:

你发送了一个带有Go代码的json主体,但是有一个application/x-www-form-urlencoded卷曲的主体.

您可以像使用curl一样手动编码字符串:

Body:      "password=acwr6414&user=john",

或者您可以使用a url.Values来正确编码正文:

creds := url.Values{}
creds.Set("user", "john")
creds.Set("password", "acwr6414")

res, err := goreq.Request{
    ContentType: "application/x-www-form-urlencoded",
    Method:      "POST",
    Uri:         "http://127.0.0.1:5000/api/login",
    Body:        creds.Encode(),
    ShowDebug:   true,
}.Do()

推荐阅读
雨天是最美
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有