Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add JWT auth example #478

Open
ppcano opened this issue Nov 9, 2021 · 0 comments
Open

Add JWT auth example #478

ppcano opened this issue Nov 9, 2021 · 0 comments
Labels
Area: OSS Content Improvements or additions to community/oss documentation examples Issues about a missing example

Comments

@ppcano
Copy link
Collaborator

ppcano commented Nov 9, 2021

https://stackoverflow.com/questions/46767543/jwt-signing-with-k6/46785899#46785899
https://community.k6.io/t/is-there-a-simple-way-to-sign-http-requests-with-jws/1743/2

https://gist.github.com/robingustafsson/7dd6463d85efdddbb0e4bcd3ecc706e1

From Slack:

Krzysztof Widera: you can check the content https://jwt.io/ or:

function parseJwt (token) {
    var base64Url = token.split('.')[1];
    var base64 = base64Url.replace(/-/g, '+').replace(/_/g, '/');
    var jsonPayload = decodeURIComponent(atob(base64).split('').map(function(c) {
        return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
    }).join(''));

    return JSON.parse(jsonPayload);
};

@tom-miseur wrote:

atob is technically a web API and therefore not part of the JS ECMAScript2015 / ES6 standard/built-in functions, which is what is at your disposal with k6 JavaScript.
Here's a working example, using our own k6/encoding library to perform the base64-decoding:

import encoding from 'k6/encoding';

export default function (){
  const encodedJwt = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c';

  const result = parseJwt(encodedJwt);
  console.log(JSON.stringify(result));
}

function parseJwt (token) {
  var base64Url = token.split('.')[1];
  var jsonPayload = decodeURIComponent(encoding.b64decode(base64Url, 'rawurl', 's').split('').map(function(c) {
      return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
  }).join(''));

  return JSON.parse(jsonPayload);
};
@MattDodsonEnglish MattDodsonEnglish added Area: OSS Content Improvements or additions to community/oss documentation examples Issues about a missing example labels Nov 7, 2022
@immavalls immavalls assigned immavalls and unassigned immavalls Jan 25, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area: OSS Content Improvements or additions to community/oss documentation examples Issues about a missing example
Projects
None yet
Development

No branches or pull requests

3 participants