背景知识:我在Windows 10计算机上使用Python 2.7.12。 到目前为止,这是我遇到的最奇怪的问题之一。
我编写了一个脚本,它使用正确的标头向API发出GET请求,然后获取一些XML数据。为了记录,当我将这样的脚本粘贴到python文件中并通过CMD运行时,它完全正常。
但是...
一旦我在函数中包装它就会停止工作。没有 否则,只需将其包装在一个函数中,然后使用
if __name__ == '__main__':
my_new_function()
从CMD运行它,它不再工作了。它仍然正常工作但API说我的身份验证凭据错误,因此我无法获得任何数据。
我查看了此代码中的每一个字符串,并且它都是ASCII编码的。我还检查了时间戳,它们都是正确的。
这是我的剧本:
SECRET_KEY = 'YYY'
PUBLIC_KEY = 'XXX'
content_type = 'application/xml'
date = time.strftime('%a, %d %b %Y %H:%M:%S GMT', time.gmtime())
method = 'GET'
uri = '/uri'
msg = """{method}
{content_type}
{date}
x-bol-date:{date}
{uri}""".format(content_type=content_type,
date=date,
method=method,
uri=uri)
h = hmac.new(
SECRET_KEY,
msg, hashlib.sha256)
b64 = base64.b64encode(h.digest())
signature = PUBLIC_KEY + b':' + b64
headers = {'Content-Type': content_type,
'X-BOL-Date': date,
'X-BOL-Authorization': signature}
r = requests.get('example.com/uri', headers=headers)
函数内的相同代码:
def get_orders():
SECRET_KEY = 'XXX'
PUBLIC_KEY = 'YYY'
content_type = 'application/xml'
date = time.strftime('%a, %d %b %Y %H:%M:%S GMT', time.gmtime())
method = 'GET'
uri = '/uri'
msg = """{method}
{content_type}
{date}
x-bol-date:{date}
{uri}""".format(content_type=content_type,
date=date,
method=method,
uri=uri)
h = hmac.new(
SECRET_KEY,
msg, hashlib.sha256)
b64 = base64.b64encode(h.digest())
signature = PUBLIC_KEY + b':' + b64
headers = {'Content-Type': content_type,
'X-BOL-Date': date,
'X-BOL-Authorization': signature}
r = requests.get('example.com/uri', headers=headers)
if __name__ == '__main__':
get_orders()
答案 0 :(得分:4)
我认为当你在函数中缩进时,你的多行字符串会在其中获取空格。将它连接在每一行上,它应该可以工作。