英文:
Google App Engine Go PostForm not sending any url.Values?
问题
我在GAE的golang中有一个简单的函数:
func Call(c appengine.Context, guid string, function string, parameters map[string]string) string {
client := urlfetch.Client(c)
values := url.Values{}
c.Infof("%v", parameters)
for k, v := range parameters {
values.Set(k, v)
}
c.Infof("%v", values)
resp, err := client.PostForm("https://blockchain.info/merchant/"+guid+"/"+function, values)
var answer string
if err != nil {
c.Errorf("BlockchainAPI post error: %s", err)
}
c.Infof("%v", resp.Request.PostForm)
[...]
}
我得到了以下输出:
2013/10/14 23:17:51 INFO: map[main_password:password]
2013/10/14 23:17:51 INFO: map[main_password:
]
2013/10/14 23:17:52 INFO: https://blockchain.info/merchant/guid/function
2013/10/14 23:17:52 INFO: map[]
看起来client.PostForm
没有将values
传递给请求,也没有在响应中获取它们。这可能是什么原因导致的错误?
英文:
I have a simple function in GAE golang:
func Call(c appengine.Context, guid string, function string, parameters map[string]string) string {
client:=urlfetch.Client(c)
values := url.Values{}
c.Infof("%v", parameters)
for k, v := range parameters {
values.Set(k, v)
}
c.Infof("%v", values)
resp, err:=client.PostForm("https://blockchain.info/merchant/"+guid+"/"+function, values)
var answer string
if err != nil {
c.Errorf("BlockchainAPI post error: %s", err)
}
c.Infof("%v", resp.Request.PostForm)
[...]
I get these printouts:
2013/10/14 23:17:51 INFO: map[main_password:password]
2013/10/14 23:17:51 INFO: map[main_password:
]
2013/10/14 23:17:52 INFO: https://blockchain.info/merchant/guid/function
2013/10/14 23:17:52 INFO: map[]
It looks as if client.PostForm
does not pass values
to the request and not get them back in response. What can be causing this error?
答案1
得分: 1
client.PostForm
使用的是请求的Body而不是request.PostForm的值。
在文档中有这样的说明:
// PostForm包含来自POST或PUT请求的解析表单数据
// body参数。
// 只有在调用ParseForm之后,该字段才可用。
// HTTP客户端忽略PostForm并使用Body。
PostForm url.Values
所以你的代码需要做出改变,从:
c.Infof("%v", resp.Request.PostForm)
改为类似下面的代码(我没有在字符串处理方面进行准确性测试):
bd, _ := ioUtil.ReadAll(resp.Body)
c.Infof("%v", string(bd[:len(bd)]))
英文:
<p>client.PostForm
uses the body not the request.PostForm values.</p>
<p>It says so in the documentation :</p>
// PostForm contains the parsed form data from POST or PUT
// body parameters.
// This field is only available after ParseForm is called.
// The HTTP client ignores PostForm and uses Body instead.
PostForm url.Values
<p>So your code needs to change from:</p>
c.Infof("%v", resp.Request.PostForm)
<p>To something like this (I haven't tested it for accuracy in the string handling):
bd, _ := ioUtil.ReadAll(resp.Body)
c.Infof("%v", string(bd[:len(bd)])
</p>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论