本文介绍了如何从Kaizala API获取accessToken的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试根据 Microsoft文档

我已经创建了一个连接器,并且具有正确的凭据:

I already created a connector and I have the correct credentials:

-applicationId
-applicationSecret
-refreshToken

并从以下网址发出GET请求: https://api.kaiza.la/v1/accessToken 通过邮递员使用我的连接器提供的正确标头.

And make a GET request from the url: https://api.kaiza.la/v1/accessToken via Postman with the correct headers provided by my connector.

但是我总是得到200回应,但身体像这样:

But I always get a 200 response but with a body like this:

我非常感谢您的帮助,而不是得到JSON响应.

Instead of getting the JSON response, I really appreciate your help.

谢谢!

推荐答案

在进行一些调试后,我替换了访问令牌URL https://api.kaiza.la/v1/accessToken 通过 https://kms2.kaiza.la/v1/accessToken ,我得到了访问令牌.

I had the same issue turns out after some debugging I replaced the access token url https://api.kaiza.la/v1/accessToken by https://kms2.kaiza.la/v1/accessToken and I got my access token.

希望这对您有帮助

这篇关于如何从Kaizala API获取accessToken的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 04:12