Skip to content

Instantly share code, notes, and snippets.

@wbamberg
Last active December 16, 2015 03:49
Show Gist options
  • Save wbamberg/5373100 to your computer and use it in GitHub Desktop.
Save wbamberg/5373100 to your computer and use it in GitHub Desktop.
parsing email address out of a Persona assertion
var components = assertion.split(".");
var decodedPayload = atob(components[1]);
var email = JSON.parse(decodedPayload).principal.email;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment