I'm trying to use everyauth to authenticate my app using LinkedIn. The authentication itself works out of the box, but the object returned by everyauth from LinkedIn (req.user) includes LinkedIn's "basic profile" info only, and not the user's primary email address which is the key information I'm after. I've authorised my app in linkedin to request r_emailaddress, and I think (looking at the LinkedIn Api docs) that I need to define the SCOPE of the login request to explicitly request the email address. What I don't know is HOW to do that using everyauth.
I'm keen to continue using everyauth rather than directly the LinkedIn Api since a) everyauth looks very impressive and comprehensive and b) I plan to use additional authentication schemes in future.
Thanks