0

我目前正在尝试使用通过 adaljs 从前端获取的访问令牌从 php 后端查询 Office365 API。来自前端的 API 调用完美运行。但是,使用来自后端和 Postman 的相同令牌的 api 调用失败并出现以下错误:2000000;reason="The token has an invalid signature.";error_category="invalid_signature"

前端(工作)示例:

$http.get("https://outlook.office365.com/api/v1.0/me/calendarview?StartDateTime=2016-08-02T00:00:00Z&EndDateTime=2016-08-02T23:59:00Z") //working
            .then(function (response) {
                $log.debug('HTTP request to Calendar API returned successfully.');
                console.log(response);
            }, function (error) {
                $log.error('HTTP request to Calendar API failed.');
                console.log(error);
            });

获取 Office365 API(不是我的客户端应用程序)的令牌并存储在 db 中:

adalAuthenticationService.acquireToken('https://outlook.office365.com').then(function(refreshToken) {

            var data = {

                code: refreshToken,
                email: email

            };

            console.log(refreshToken);

            Office365.createIntegration('office365', data)

                .then(function() {

                    console.log("link created");
                    $scope.loading = false;


                }, function(error) {

                    console.error(error);
                    $scope.loading = false;

                })

        }, function(err) {

            console.error(err);

        });

JWT 也已aud: "https://outlook.office365.com",正确设置

4

1 回答 1

1

我觉得很傻,但是我的访问令牌没有在数据库的其他代码中更新(看起来像,但事实并非如此)。因此访问令牌无效,因此出现错误。如果您看到这个,请确保您的访问令牌是有效的/最新的令牌!

于 2016-08-03T14:57:58.297 回答