我正在使用Google DialogFlow服务的Entrepreise Edition但由于某种原因我无法找到访问令牌,因此我可以使用它来调用dialogflow api V1。
在我的代码中,我有类似的东西:
$.ajax({
type: "POST",
url: baseUrl + "query?v=20150910",
contentType: "application/json; charset=utf-8",
dataType: "json",
headers: {
"Authorization": "Bearer " + accessToken
},
data: JSON.stringify({ query: text, lang: "en", sessionId: "somerandomthing" }),
success: function(data) {
var respText = data.result.fulfillment.speech;
console.log("Respuesta: " + respText);
setResponse(respText);
},
error: function() {
setResponse("Internal Server Error");
}
需要访问令牌的地方。
注意:如果我使用NOrmal accoutn for Dialogflow(非Entreprise)我可以看到访问令牌,这很奇怪。
答案 0 :(得分:1)
Dialogflow Enterprise仅支持Dialogflow API的v2或v2beta1版本,这些版本依赖于Google Cloud IAM进行身份验证,而不是旧的开发人员访问令牌。请参阅" Setting up authentication" Dialogflow V1到V2迁移指南和Google Cloud authentication overview。
中的页面