Slide 98
Slide 98 text
function onlogin(assertion) {
var body = qs.stringify({
assertion: assertion,
audience: 'http://123done.org'
});
var request = https.request({
host: 'verifier.login.persona.org',
path: '/verify',
method: 'POST',
headers: {
'content-type':
'application/x-www-form-urlencoded',
'content-length': body.length
}
}, onVerifyResp);
request.write(body);
request.end();
}
Server side assertion verification