在PhoneGap中使用Googleplus进行签名

时间:2013-12-20 10:49:17

标签: cordova login google-plus google-plus-one

我已经尝试过使用googleplus登录,但有以下isssue

1)我有创建clietn id,如下所示

enter image description here

2)我的javascript代码是

$('.test').click(function(){

googleapi.authorize({

        client_id: '753933765205-jjo73l76a1k1sh7dqstnr75975jgle06.apps.googleusercontent.com',

        client_secret: '3yDj5mOF_owMijnILG5gJYnS',

        redirect_uri: 'http://localhost',

        scope: 'https://www.googleapis.com/auth/analytics.readonly'

    }).done(function(data) {

        $loginStatus.html('Access Token: ' + data.access_token);

    }).fail(function(data) {

        $loginStatus.html(data.error);
   });

});

当我使用上面的代码运行我的应用程序时单击按钮然后作为输出 scrreen1)它显示谷歌页面 enter image description here

然后当点击“接受它”时,它会触发错误或者是否会附带代码,并说在应用程序中复制粘贴此代码。

enter image description here

我有搜索很多,但没有找到这样的帮助。请帮助我 如果您需要更清晰的代码,那么我也可以发送完整的演示代码。

请帮帮我......

先谢谢..

1 个答案:

答案 0 :(得分:0)