Skip to content

Instantly share code, notes, and snippets.

View shekharsuman1's full-sized avatar

Shekhar Suman shekharsuman1

  • India
View GitHub Profile
@shekharsuman1
shekharsuman1 / account.ejs
Created August 3, 2012 07:32
Authenticating with Passport - Google, Yahoo, Facebook, Twitter.
<p>
<a href="/">Home</a> |
<a href="/account">Account</a> |
<a href="/logout">Log Out</a>
</p>
<p>ID: <%= user.id %></p>
<p>Username: <%= user.username %></p>
<p>Name: <%= user.displayName %></p>
<h4><%= JSON.stringify(user) %></h4> <!-- This line will output all the data associated with the Logged In user returned by Passport -->