0

当我在 EC2 Linux 服务器实例(运行 Ubuntu 13.04)上运行它时,我正在努力获得 OAuth2 授权来处理我正在处理的脚本。相关的片段是:

with open('creds.txt') as f:
    creds = {}
    for line in f:
        creds[line.split(',')[0]] = line.split(',')[1].rstrip('\n')

self.client_id = creds['client_id']
self.client_secret = creds['client_secret']
self.username = creds['username']
self.password = creds['password'])

token_response = requests.post(
    "https://example.com/oauth2/access_token/", 
    data={
        "grant_type": "password",
        "client_id": self.client_id,
        "client_secret": self.client_secret,
        "username": self.username,
        "password": self.password,
        "scope": "read+write"}).json()

它在我的家用计算机(运行 Windows 7)上运行良好,只是当我尝试远程运行它时,我得到:{u'error': u'invalid_client'}.

我尝试设置新的客户端 ID 和密码,但仍然得到相同的响应。

  • 为什么它在远程服务器上的工作方式与在我自己的机器上不同?
  • 在哪台机器上创建应用程序是否重要(见评论)?CURL- 我通过在两种环境中成功验证使用来消除这种可能性。

我现在唯一能想到的可能是请求库在 Ubuntu 上处理 POST 请求的方式不同。有谁知道是否是这种情况?

4

1 回答 1

0

当 Nix 和 Windows 环境之间存在差异时,这可能是我首先应该想到的:

始终检查 EOL 字符!

问题是,当从我的凭据文件中获取用户名、密码等时,我使用 剥离换行符string.rstrip('\n'),因此在 Unix 环境中留下\r回车符,然后作为POST请求的一部分传递。

适用于两种环境的简单而正确的解决方案是使用string.rstrip()去除所有尾随空格和行尾字符的方法。

于 2013-07-21T18:28:50.310 回答