如何使用 Javascript 和 jQuery 获取身份验证令牌以使用 google 的 contct api?

发布于 2024-12-02 00:11:33 字数 71 浏览 1 评论 0原文

我想使用 jQuery 获取 google 的身份验证令牌。我知道有许多为此预先开发的库,但我想使用 api 文档中描述的协议。

I want to get auth token of google using jQuery. I know there are many predeveloped libraries for this, but I want to this using protocol described in api documentation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小巷里的女流氓 2024-12-09 00:11:33

尝试下面的代码..

 function clientlog(Adminemail,adminpass) {  
   netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead");  
   $.ajax({  
     type: 'POST',  
     url: 'https://www.google.com/accounts/ClientLogin',  
     contentType: 'application/x-www-form-urlencoded',  
     data: { accountType : "HOSTED", Email : ""+Adminemail+"", Passwd : ""+adminpass+"", service : "cp"}, // cp for contact service..
    success: function (response) {      
        var tokenArray = response.split("="); // Split to response tokenArray[3] is the auth token
        token = tokenArray[3];
        token= token.replace(/^[\s]+/,'').replace(/[\s]+$/,'').replace(/[\s]{2,}/,' ');
        alert("Done");
        $("#lable").html("you have logged in successfully..!!");
        $("#uname").val("");
        $("#pass").val("");
        $("#login").attr("disabled","disabled")
     },
     error: function(){
     $("#lable").html("Sorry Error in Login...!!");
     }
   });  
 } 

try the following code..

 function clientlog(Adminemail,adminpass) {  
   netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead");  
   $.ajax({  
     type: 'POST',  
     url: 'https://www.google.com/accounts/ClientLogin',  
     contentType: 'application/x-www-form-urlencoded',  
     data: { accountType : "HOSTED", Email : ""+Adminemail+"", Passwd : ""+adminpass+"", service : "cp"}, // cp for contact service..
    success: function (response) {      
        var tokenArray = response.split("="); // Split to response tokenArray[3] is the auth token
        token = tokenArray[3];
        token= token.replace(/^[\s]+/,'').replace(/[\s]+$/,'').replace(/[\s]{2,}/,' ');
        alert("Done");
        $("#lable").html("you have logged in successfully..!!");
        $("#uname").val("");
        $("#pass").val("");
        $("#login").attr("disabled","disabled")
     },
     error: function(){
     $("#lable").html("Sorry Error in Login...!!");
     }
   });  
 } 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文