adding additionals details in user after passort js oauth code example
Example 1: hwo to send token on redirection in passport
res.cookie('token', token, ...);
res.redirect(...);
Example 2: hwo to send token on redirection in passport
res.set('x-token', token);
res.redirect(...);