在创建和测试邀请时,Google Classroom API会返回包含空数据对象的邀请响应

时间:2017-07-17 18:56:15

标签: angularjs google-classroom google-apis-explorer

$scope.listInvitations = function(){
    $http({
        url: 'https://classroom.googleapis.com/v1/invitations?userId='+$scope.user.email+'&access_token='+$scope.session.access_token,
        method: 'GET'
    }).then(function(response){
        consoleLog(response);
        if(response.status==200){
            $scope.invitations = response.data.invitations;
        }
    }, function(response){
        consoleLog(response);
    }); 
}

Google Classroom Invitations API Link

下图显示了响应。

Response is shown in the image

我已通过' get'使用邀请ID的邀请方法,该邀请ID在我创建邀请时返回,邀请存在。但是,当回复状态为200时,我无法获得邀请列表。有谁能告诉我,我在这里缺少什么?

0 个答案:

没有答案