AngularJS致电Google OAuth2

时间:2015-11-21 17:10:27

标签: javascript angularjs oauth-2.0

当我拨打此电话时,它会打开帐户选择器,然后我可以选择我的一个Google帐户,当我这样做时,我会收到错误

Error: invalid_request

Missing required parameter: scope

我可以在帐户选择器的URL中看到范围变量,但是当我选择帐户时,它会丢失URL中的范围变量。我在此示例中更改了我的客户端ID。 在此先感谢。

 app.controller("FirstController", function($scope, $location) {
$scope.redirectToGoogle = function () {
    console.log("redirectToGoogle");
    var client_id="myclientID";
    var scope="profile email";
    var redirect_uri="http://localhost:8080/auth/google/callback/";
    var response_type="token";
    var url="https://accounts.google.com/o/oauth2/auth?&client_id="+client_id+"scope="+scope+"&redirect_uri="+redirect_uri+"&response_type="+response_type;
    window.location.replace(url);
}

});

1 个答案:

答案 0 :(得分:0)

使用AngularJS $位置服务的方法是:

var location = $location.url(url);

有关详细信息,请参阅AngularJS $location service API Docs