0

我正在编写一个连接到 Budget Insight https://www.budget-insight.com/的 API,以从最终用户那里获取财务数据。

Budget Insight 在 web 视图上使用 Oauth2 身份验证,要求用户输入其凭据以生成代码,然后交换令牌。

我已经为我的项目安装了 authlib 及其依赖项,并尝试了不同的方法来完成这项工作

第一种方式

budgea = OAuth2Session(
    client_id="37246252",
    client_secret=os.getenv("BUDGEA_CLIENT_SECRET"),
    redirect_uri="http://127.0.0.1:5000/budgea_callback",
)

第二种方式

budgea = oauth2.register(
    "budgea",
    client_id="37246252",
    client_secret=os.getenv("BUDGEA_CLIENT_SECRET"),
    access_token_url="https://ynab-fr-sandbox.biapi.pro/2.0/auth/token/access",
    authorize_url="https://ynab-fr-sandbox.biapi.pro/2.0/auth/webview/connect/select?client_id=37246252&redirect_uri=http:%2F%2F127.0.0.1:5000%2Fbudgea_callback",
    api_base_url="https://ynab-fr-sandbox.biapi.pro/2.0/",
    client_kwargs=None,
)

其次是

@app.route("/budgea")
def budgea():
    authorize_url = "https://ynab-fr-sandbox.biapi.pro/2.0/auth/webview/connect/select?client_id=37246252&redirect_uri=http:%2F%2F127.0.0.1:5000%2Fbudgea_callback"
    uri, state = budgea.create_authorization_url(authorize_url)
    return uri

当我访问 /budgea 路由时,两种方式都返回 AttributeError: 'function' object has no attribute 'create_authorization_url'。

4

1 回答 1

0

您使用的是什么版本的 Authlib?请使用最新版本的 Authlib。

  1. 然后尝试create_authorization_url使用OAuth2Session方式
  2. 第二种方式是Flask客户端方式,你应该使用

    return client.authorize_redirect(callback_uri)
    
于 2019-08-09T02:08:13.803 回答