javascript 抢的令牌,github上-的OAuth登录

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 抢的令牌,github上-的OAuth登录相关的知识,希望对你有一定的参考价值。

<script type="text/javascript">
  $appid = getUrlVar('login');
  console.log($appid);
  $appkey = getUrlVar('code');
  console.log($appkey);
  if($appid != '' && $appkey != '')
    {
    $('#auth-keys').html('');
    $appid_link = '<li><strong>x-appid</strong> - ' + $appid + '</li>';
    //console.log($appid_link)
    $appkey_link = '<li><strong>x-appkey</strong> - ' + $appkey + '</li>';
    //console.log($appkey_link)
    $auth_html = '<ul>' + $appid_link + $appkey_link + '</ul>';
    $('#auth-keys').html($auth_html);
    $('#auth-header').html('Authentication (AUTHENTICATED)');
    }
</script>

以上是关于javascript 抢的令牌,github上-的OAuth登录的主要内容,如果未能解决你的问题,请参考以下文章

更新 github 的个人令牌

如何通过 Javascript 从 jquery-tokeninput 插件中获取添加的令牌 ID、名称列表?

VSTS - 通过个人访问令牌从GitHub获取源代码

公开使用 GitHub 访问令牌

javascript loopback在用户注册表上添加令牌

如何为组织帐户生成 GitHub OAuth 令牌?