使用Python中的httplib无法获得成功的响应

时间:2013-09-12 11:46:45

标签: python xml httplib

我正在尝试使用python和FreshBooks API模块连接到httplib。我已经成功完成了Requests包的工作,但由于我是初学者,并且想要学习,我还希望使用标准Python库使其工作。

这就是使用httplib的代码:

import base64, httplib

# test script created to connect with my test Freshbooks account

headers = {}
body = '/api/2.1/xml-in'
headers["Authorization"] = "Basic {0}".format(
    base64.b64encode("{0}:{1}".format('I have put here my Auth Token', 'user')))
headers["Content-type"] = "application/xml"

# the XML we ll send to Freshbooks
XML = """<?xml version="1.0" encoding="utf-8"?>
<request method="task.list">
  <page>1</page>
  <per_page>15</per_page>
</request>"""


# Enable the job
conn = httplib.HTTPSConnection('devjam-billing.freshbooks.com')
conn.request('POST', body, None, headers)
resp = conn.getresponse()
print resp.status
conn.send(XML)

print resp.read()
conn.close()

这就是Freshbooks的回报:

200                                                                                                                                                                                                                                                                               
<?xml version="1.0" encoding="utf-8"?>                                                                                                                                                                                                                                            
<response xmlns="http://www.freshbooks.com/api/" status="fail">                                                                                                                                                                                                                   
  <error>Your XML is not formatted correctly.</error>                                                                                                                                                                                                                             
  <code>40010</code>                                                                                                                                                                                                                                                              
</response

在我使用包的第二个脚本中,我有相同的响应,我修复了在post()函数中添加标题:

import requests

XML = """<?xml version="1.0" encoding="utf-8"?>
<request method="task.list">
    <page>1</page>
    <per_page>15</per_page>
</request>"""
headers = {'Content-Type': 'application/xml'} # set what your server accepts
 r = requests.post('https://devjam-billing.freshbooks.com/api/2.1/xml-in', auth=      ('my auth token', 'user'), data=XML, headers=headers)

 print r.status_code
 print r.headers['content-type']
 # get the response
 print r.text

我试图通过添加第一个来做类似的事情:

headers["Content-type"] = "application/xml"

没有成功。

有什么想法吗? b64encode也是编码的安全安全选项,还是有更安全的方法吗?感谢。

2 个答案:

答案 0 :(得分:1)

实际上你需要在请求中发送POST数据(XML字符串),所以,替换它:

conn.request('POST', body, None, headers)
resp = conn.getresponse()
print resp.status
conn.send(XML)
print resp.read()

用这个:

conn.request('POST', body, XML, headers)
resp = conn.getresponse()
print resp.status
print resp.read()

我希望它有所帮助!

答案 1 :(得分:0)

您似乎在错误的时间发送数据。从docs(强调我的)看。

HTTPConnection.send(数据)

将数据发送到服务器。这应该仅在之后直接使用调用endheaders()方法,并且之后调用getresponse()。

在你的情况下:

conn.endheaders()
conn.send(XML)
resp = conn.getresponse()