xgqfrms™, xgqfrms® : xgqfrms's offical website of cnblogs! xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

JWT & JSON Web Tokens

JSON Web Tokens

https://jwt.io

json web token example

https://jwt.io/introduction/

https://medium.com/vandium-software/5-easy-steps-to-understanding-json-web-tokens-jwt-1164c0adfcec

https://github.com/dwyl/learn-json-web-tokens

https://scotch.io/tutorials/the-anatomy-of-a-json-web-token

https://www.toptal.com/web/cookie-free-authentication-with-json-web-tokens-an-example-in-laravel-and-angularjs


https://scotch.io/tutorials/the-anatomy-of-a-json-web-token

JWT

image

payload

signature


base64


"use strict";

/**
 *
 * @author xgqfrms
 * @license MIT
 * @copyright xgqfrms
 *
 * @description base64Encode & base64Decode
 * @augments
 * @example
 *
 */

const base64Encode = (obj = {}, debug = false) => {
    let result = ``;
    // do something...
    result = btoa(JSON.stringify(obj));
    // result = btoa(encodeURIComponent(JSON.stringify(obj)));
    return result;
};

const base64Decode = (str = "", debug = false) => {
    let result = ``;
    // do something...
    result = JSON.parse(atob(str));
    // result = JSON.parse(decodeURIComponent(atob(str));
    return result;
};

const BASE64 = {
    base64Encode,
    base64Decode
};

export default BASE64;

export {
    base64Encode,
    base64Decode
};



Token

https://jwt.io/introduction/

image

https://github.com/auth0-blog/angular-token-auth/blob/master/auth.client.js#L31

https://auth0.com/docs/tokens

https://auth0.com/docs/tokens/id-token#verify-the-signature

refs

https://www.cnblogs.com/xgqfrms/tag/JWT/



©xgqfrms 2012-2020

www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!


posted @   xgqfrms  阅读(471)  评论(4编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· .NET10 - 预览版1新功能体验(一)
历史上的今天:
2016-06-12 Free Photoshop PSD website templates 免费的网站页面PSD 素材模板 下载网站 Free Beautiful Restaurant PSD Home Page Website Template https://www.pinterest.com/xgqfms/
点击右上角即可分享
微信分享提示