gpt4 book ai didi

Python slackclient oauth.access 调用返回 'invalid_code' 错误

转载 作者:太空宇宙 更新时间:2023-11-04 01:50:01 24 4
gpt4 key购买 nike

我正在使用 ngrok + flask + python slackclient 来响应 Slack API 的 OAuth Flow,但我收到了一个 invalid_code 错误。

我正在执行 slackclient docs 中描述的步骤到目前为止我的代码非常简单:

import os
import slack
from flask import Flask, request
app = Flask(__name__)

SLACK_CLIENT_ID = os.environ['SLACK_CLIENT_ID']
SLACK_CLIENT_SECRET = os.environ['SLACK_CLIENT_SECRET']

@app.route('/install', methods=['GET', 'POST'])
def install():
# Retrieve the auth code from the request params
auth_code = request.args['code']

# An empty string is a valid token for this request
client = slack.WebClient(token='')

# Request the auth tokens from Slack
response = client.oauth_access(
client_id=SLACK_CLIENT_ID,
client_secret=SLACK_CLIENT_SECRET,
code=auth_code
)

print(response)

if __name__ == '__main__':
app.run()

我从 Slack 工作区的“管理应用程序”页面中的“添加”按钮启动应用程序安装。安装启动后,我可以确认我收到了预期的 code,并且它被正确地传递给 slack.BaseClient.api_call() 函数,最终将请求发送到 https://slack.com/api/oauth.access

我希望 oauth_access 调用的响应是一个包含我的访问 token 的 JSON 对象,但是,我得到:

slack.errors.SlackApiError: The request to the Slack API failed.
The server responded with: {'ok': False, 'error': 'invalid_code', 'warning': 'superfluous_charset', 'response_metadata': {'warnings': ['superfluous_charset']}}

我尝试使用所需参数将带有 curl 的 POST 发送到 Slack 的端点,它按预期工作。我还尝试使用 requests.post() 并且也按预期工作。所以我怀疑我没有正确使用 slackclient 或者误解了什么。谁能帮我指出正确的方向?

最佳答案

看来是Python SDK的问题。我认为这个拉取请求解决了这个问题

https://github.com/slackapi/python-slackclient/pull/527

与此同时,恢复到 2.1.0 版本可能会更容易

关于Python slackclient oauth.access 调用返回 'invalid_code' 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58231065/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com