python post请求 415_接收错误415:使用REST API发送GET请求时不支持媒体类型
我已經創建了一些python代碼來與Exact在線通信,并希望通過使用python和urllib2來發送GET和POST請求。在
現在,當我嘗試發送一個簡單的GET請求時,它包含諸如“Accept:application/json”這樣的頭,當我在一個測試應用程序(SOAP-UI)中嘗試它時,它就起作用了
我的python代碼如下:import urllib2, urllib, json, requests, base64
data = urllib.urlencode({
})
request = urllib2.Request(
url="https://start.exactonline.nl/api/v1/"+divis+"/salesorder/SalesOrderLines?access_token=" + access,
data=data)
base64string = base64.encodestring('%s:%s' % (user,password)).replace('\n', '')
request.add_header("Authorization", "Basic %s" % base64string)
request.add_header("Content-Type", "application/json+xml")
request.add_header("Accept", "application/json+xml")
request= urllib2.urlopen(request)
print request_open
response = request_open.read()
print response
結果是
^{pr2}$
我已經嘗試了這兩種內容類型和接受,以及沒有另一種。所有人都給出了同樣的415回應。
當我試著只用request.add_header("Content-Type", "application/json")
或者request.add_header("Content-Type", "application/atom+xml")
我得到的答復如下:urllib2.HTTPError: HTTP Error 400: Bad Request
我想這可能是這一切的原因。在
有人知道怎么解決這個問題嗎?在
也許值得一提的是,當我用另一個應用程序測試這個時,響應是Content-Type: application/atom+xml;charset=utf-8
總結
以上是生活随笔為你收集整理的python post请求 415_接收错误415:使用REST API发送GET请求时不支持媒体类型的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: python交互窗口怎么才能不连着上一个
- 下一篇: 朝鲜战争中的那些军用直升机