这是场景和设置
我正在使用G Suite Admin SDK来观看用户数据(Python API)中的变化
通知已发送到Google Cloud Function
设置正常运行。
问题是当我试图通过使用SDK停止观看资源时说
<HttpError 404 when requesting https://www.googleapis.com/admin/directory/v1/admin/directory_v1/channels/stop? returned "Not Found">
我确定我使用的是正确的 id 和 resourceId 。有谁知道为什么它失败了?
答案 0 :(得分:1)
我找到了问题。
API指出端点URL为https://www.googleapis.com/admin/directory_v1/channels/stop
,但调用中的URL为https://www.googleapis.com/admin/directory/v1/admin/directory_v1/channels/stop
问题出在SDK本身,stop
API是文档中仅有_v1
而非/v1
的一个。我相信这就是API问题的原因。只需发出常规的HTTP Post通知即可