例如,如果我打电话给:https://api.linkedin.com/v1/people/~:(id,first-name,last-name)它应该可以正常工作,但是如果 URL 编码(并且应该是)像这样:https://api.linkedin.com/v1/people/~:%28id,first-name,last-name%29我收到此错误消息:<?xml version="1.0" encoding="UTF-8" standalone="yes"?><error> <status>404</status> <timestamp>1423577265744</timestamp> <request-id>6B2UQSA25W</request-id> <error-code>0</error-code> <message>[invalid.property.name]. Couldn't find property with name {:%28id,first-name,last-name%29} in resource of type {Person}</message></error>你怎么处理?目前我无法更改代码,因为我的语言(Golang btw)使用标准包对它进行了非常正确的编码。这是我的代码:r, _ := http.NewRequest("GET", "https://api.linkedin.com/v1/people/~:(id,first-name,last-name)", nil)r.Header.Set("Authorization", "Bearer "+respBody.AccessToken)resp, err = http.DefaultClient.Do(r)除了重写 std lib 代码之外,您是否有解决此问题的方法?一些自 2013 年以来面临同样问题的人在这里https://developer.linkedin.com/forum/edit-i-dont-way-uris-look
1 回答
- 1 回答
- 0 关注
- 153 浏览
添加回答
举报
0/150
提交
取消