小伙伴们对Golang编程感兴趣吗?是否正在学习相关知识点?如果是,那么本文《在golang中调用api错误400错误请求》,就很适合你,本篇文章讲解的知识点主要包括。在之后的文章中也会多多分享相关知识点,希望对大家的知识积累有所帮助!
问题内容我收到以下错误。下面用golang写的代码有什么问题吗?有什么想法吗?
&{400 错误请求 400 http/1.1 1 1 地图[内容类型:[text/html; charset=us-ascii] 日期:[2018 年 8 月 15 日星期三 16:14:34 gmt] 内容长度:[311]] 0xc42005c280 311 [] true false 地图[] 0xc4200fe000 0xc4200a62c0}
url := fmt.Sprintf("https://api.labs.cognitive.microsoft.com/academic/v1.0/interpret?query=a two level microprogram simulator&complete=0&count=10&model=latest")
解决方案
虽然go代码有问题(my-key
看起来特别奇怪),但问题是你需要转义查询参数中的空格:
$ curl 'https://api.labs.cognitive.microsoft.com/academic/v1.0/interpret?query=a two level microprogram simulator&complete=0&count=10&model=latest'
<!doctype html public "-//w3c//dtd html 4.01//en""http://www.w3.org/tr/html4/strict.dtd">
<html><head><title>bad request</title>
<meta http-equiv="content-type" content="text/html; charset=us-ascii"></head>
<body><h2>bad request</h2>
<hr><p>http error 400. the request is badly formed.</p>
</body></html>
使用 %20
转义空格后,我们得到预期的访问错误:
$ curl 'https://api.labs.cognitive.microsoft.com/academic/v1.0/interpret?query=a%20two%20level%20microprogram%20simulator&complete=0&count=10&model=latest'
{"error":{"code":"unspecified","message":"access denied due to invalid subscription key. make sure you are subscribed to an api you are trying to call and provide the right key."}}
最好让 go 来处理这个问题:
import "net/url"
base_url := "https://api.labs.cognitive.microsoft.com/academic/v1.0/interpret"
var v url.Values
v.Add("query", "a two level microprogram simulator")
v.Add("complete", "0")
v.Add("count", "10")
v.Add("model", "latest")
url := base_url + "?" + v.Encode()
到这里,我们也就讲完了《在golang中调用api错误400错误请求》的内容了。个人认为,基础知识的学习和巩固,是为了更好的将其运用到项目中,欢迎关注编程网公众号,带你了解更多关于的知识点!