是否可以在 Google 函数中创建 3 条腿的 OAuth
Is it possible to make 3 Legged OAuth in Google Functions
我正在使用 Dialogflow 开发 ChatBot。我会将它与 Autodesk Forge API 集成,后者需要 3 条腿的 OAuth。我正在使用 Dialogflow fulfillment,它是一个 google 云函数(无服务器)。我在用户注册后发送一个 URL 进行身份验证,它转向回调 URL 和 URL + 代码。有没有办法在像 Google Cloud Functions 这样的无服务器系统中的 URL 中捕获此参数。
(我正在使用 node.js)。
在 Autodesk Forge 方面,您将需要使用具有隐式授权的 OAuth,其中 returns access_token
作为 URL 的一部分。 See this tutorial.
我正在使用 Dialogflow 开发 ChatBot。我会将它与 Autodesk Forge API 集成,后者需要 3 条腿的 OAuth。我正在使用 Dialogflow fulfillment,它是一个 google 云函数(无服务器)。我在用户注册后发送一个 URL 进行身份验证,它转向回调 URL 和 URL + 代码。有没有办法在像 Google Cloud Functions 这样的无服务器系统中的 URL 中捕获此参数。
(我正在使用 node.js)。
在 Autodesk Forge 方面,您将需要使用具有隐式授权的 OAuth,其中 returns access_token
作为 URL 的一部分。 See this tutorial.