gpt4 book ai didi

ruby-on-rails - 本地测试 Google API 客户端监视事件

转载 作者:行者123 更新时间:2023-12-03 09:20:22 25 4
gpt4 key购买 nike

我正在使用google api ruby client将 webhook 添加到日历,但我遇到了 Google::Apis::ClientError: pushWebhookBadDomain

我已经设置了一个 ngrok 实例并在网站管理员工具上验证了它,以便我可以将其作为允许的域添加到处理所有日历身份验证等的项目中。我找不到任何对该特定错误的引用所以我想知道使用 ngrok 是否有什么奇怪的地方,以及是否有更好的方法可以在本地测试 webhook。

这是一个电话(为了清晰起见,进行了精简),以防我做了任何愚蠢的事情:

require 'google/apis/calendar_v3'
client = Google::Apis::CalendarV3::CalendarService.new
authorization = Signet::OAuth2::Client.new(
:authorization_uri =>
'https://accounts.google.com/o/oauth2/auth',
:token_credential_uri =>
'https://accounts.google.com/o/oauth2/token'
)
authorization.client_id = ENV['GOOGLE_CLIENT_ID']
authorization.client_secret = ENV['GOOGLE_CLIENT_SECRET']
authorization.grant_type = 'refresh_token'
authorization.refresh_token = refresh_token
authorization.fetch_access_token!
client.authorization = authorization

channel = Google::Apis::CalendarV3::Channel.new(address: success_callback_url, id: channel_id, type: "web_hook")
binding.pry
webhook = client.watch_event('primary', channel, single_events: true, time_min: Time.now.iso8601)

最佳答案

当您在 AppEngine 项目的 Google Cloud Console 中将该域注册为允许的域时,您不应在域名前面包含 https://。您需要将其注册为 xxxxxxx.ngrok.io。

我遇到了与您相同的问题,在添加允许的域时删除 https://后,我能够在本地计算机上接收使用 ngrok 转发的推送通知。

如果这对您有帮助,请告诉我。

兄弟,伊森

关于ruby-on-rails - 本地测试 Google API 客户端监视事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32832177/

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