【问题标题】:Headers not sending correctly with python 2.6.6 and httplib使用 python 2.6.6 和 httplib 无法正确发送标头
【发布时间】:2023-04-02 19:49:01
【问题描述】:

我有一个非常基本的 python 脚本,我用它来访问特定的端点。由于某种原因,我无法让它发送我需要它在特定服务器上发送的授权标头。以下信息是虚构的,但却是我正在做的一个很好的例子。我编写了这个脚本,它在我的虚拟机上运行良好,但在实际服务器上却没有。 Python版本都是2.6.6。我无法更改版本,所以请不要建议更新。我写这个问题是为了获得指导,因为标题可能会被删除。

环境实际上是相同的,并使用配置管理器来保持其设置的一致性。

这是脚本。很直接。我只是在进行 API 调用以根据访问令牌返回用户模型。

#! /usr/bin/env python
import httplib, os, socket

conn = httplib.HTTPConnection(socket.gethostname())
conn.set_debuglevel(1)
conn.putrequest("GET", "/api/index.php/user")
conn.putheader('Authorization','Bearer 123456')
conn.endheaders()
response = conn.getresponse()

print response.status
print response.reason
print response.read()

在我的虚拟机上请求和调试信息

[root@vm scripts]# ./test.py 
send: 'GET /api/index.php/user 
    HTTP/1.1\r\n
    Host: vm.shibby.com\r\n
    Accept-Encoding: identity\r\n
    Authorization: Bearer 123456\r\n\r\n'
reply: 'HTTP/1.1 200 OK\r\n'
header: Date: Mon, 10 Mar 2014 22:18:00 GMT
header: Server: Apache/2.2.15 (CentOS)
header: X-Powered-By: PHP/5.3.3
header: X-Frame-Options: SAMEORIGIN, SAMEORIGIN
header: Connection: close
header: Transfer-Encoding: chunked
header: Content-Type: application/json; charset=utf-8
200
OK

VM 收到的请求 - 转储到日志中

2014-03-10 22:18:00 --- DEBUG: headers: HTTP_Header Object
(
    [_accept_content:protected] => 
    [_accept_charset:protected] => 
    [_accept_encoding:protected] => 
    [_accept_language:protected] => 
    [storage:ArrayObject:private] => Array
    (
        [authorization] => Bearer 123456
        [host] => vm.shibby.com
        [accept-encoding] => identity
        [connection] => close
    )
)

在我的服务器上输出

[root@vm scripts]# ./test.py
send: 'GET /api/index.php/user 
    HTTP/1.1\r\n
    Host: shibby.com\r\n
    Accept-Encoding: identity\r\n
    Authorization: Bearer 123456\r\n\r\n'
reply: 'HTTP/1.1 400 Bad Request\r\n'
header: Date: Mon, 10 Mar 2014 22:24:55 GMT
header: Server: Apache
header: Access-Control-Allow-Origin: *
header: Access-Control-Allow-Headers: Authorization
header: X-Frame-Options: SAMEORIGIN
header: Content-Length: 37
header: Connection: close
header: Content-Type: application/json
400
Bad Request
{"error":"invalid_token"}

服务器收到的请求

2014-03-10 22:33:23 --- DEBUG: headers: HTTP_Header Object
(
    [_accept_content:protected] => 
    [_accept_charset:protected] => 
    [_accept_encoding:protected] => 
    [_accept_language:protected] => 
    [storage:ArrayObject:private] => Array
        (
            [host] => shibby.com
            [accept-encoding] => identity
            [connection] => close
        )

)

如您所见,相关端点未收到授权标头。此时没有进行任何处理,我正在登录控制器的构造函数。

【问题讨论】:

    标签:
    python
    httplib