即使似乎授予访问权限,Google Calendar API在OAuth期间也会出现403错误

问题描述 投票:10回答:1

我的应用会在用户的Google日历上发布,修改和删除活动。我正在配置OAuth以实现这一目标。这个想法是,在注册后,用户将能够进入他们的设置并同意将我的应用程序连接到他们的Google日历。然后,我将能够在数据库中存储oauth令牌和刷新令牌,并在用户日历上创建/编辑/删除事件时使用它们。

无论如何,问题是我选择了我的帐户:

Choosing account

然后我点击“允许”提供同意:

Allowing access

以下是它变得奇怪的地方:在幕后,Google Calendar API会报告403 Forbidden错误。

%Ueberauth.Failure{errors: [%Ueberauth.Failure.Error{message: 403,
message_key: "OAuth2"}], provider: :google,
strategy: Ueberauth.Strategy.Google}

我的ueberauth配置:

config :ueberauth, Ueberauth,
  providers: [
    google: {Ueberauth.Strategy.Google, [default_scope: "https://www.googleapis.com/auth/calendar", approval_prompt: "force", access_type: "offline"]}
]

我正在提出的要求:

def callback(%{assigns: %{ueberauth_failure: fail}} = conn, _params) do
  IO.inspect fail
  conn
  |> put_flash(:error, "Failed to authenticate.")
  |> redirect(to: "/")
end

def callback(%{assigns: %{ueberauth_auth: auth}} = conn, _params) do
  IO.inspect auth
  conn
  |> put_flash(:success, "Connected to Google.")
  |> redirect(to: "/")
end

第一个callback函数是匹配的函数(因为它失败了)。

但是,当我转到我的Google帐户时,我可以看到该应用已被授予权限:

Access granted

我提供了正确的client_id和client_secret。此外,我在Google API控制台中创建了一个服务帐户,并与该帐户共享了我的日历:

Calendar sharing settings

我还需要做什么?

编辑:更多信息 - 我可以通过我的代码(它是样板Ueberauth_Google)授予对所有其他Google模块的访问权限。例如,如果我使用电子邮件作为范围发出请求,它就可以工作,我从Google获得auth_token。只有谷歌日历提供403,这使我相信有一些特定的东西导致它。

编辑2:我查看了error handling section of the Google Calendar API,其中列出的403错误都不适用于我:

  • 403:超出每日限制
  • 403:超出用户速率限制
  • 403:超出速率限制
  • 403:超出日历使用限制

编辑3:我创建了一个全新的Google帐户,并与我的Google服务帐户共享其日历。但是那个给出了同样的错误。

oauth-2.0 elixir google-oauth google-calendar-api
1个回答
7
投票

终于想通了。

https://www.googleapis.com/auth/calendar范围本身是不够的。还需要将https://www.googleapis.com/auth/userinfo.profile添加到范围。

© www.soinside.com 2019 - 2024. All rights reserved.