You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[2015-06-22 22:15:02.736] [INFO] console - Trying to access a pad /p/foo
[2015-06-22 22:15:02.736] [WARN] console - isAuthenticated false
[2015-06-22 22:15:02.736] [WARN] console - passing back to auth as not authenticated
[2015-06-22 22:15:04.122] [INFO] console - successful auth through Github
[2015-06-22 22:15:04.123] [INFO] console - serialized user { provider: 'github', ... omitted ... }
[2015-06-22 22:15:04.128] [INFO] console - Redirecting back to home after succesful auth
Then trying to visit another pad without stopping / starting Etherpad or closing browser returns..
[2015-06-22 22:16:10.500] [INFO] console - Trying to access a pad /p/oWtSRH2g01
[2015-06-22 22:16:10.500] [WARN] console - isAuthenticated false
[2015-06-22 22:16:10.500] [WARN] console - passing back to auth as not authenticated
[2015-06-22 22:16:11.827] [INFO] console - successful auth through Github
[2015-06-22 22:16:11.827] [INFO] console - serialized user { provider: 'github',
So the isAuthenticated persistence isn't being kept
These methods don't seem to be responsible for persistence.. I'm ultimately going to write to/read from the database layer but for now I want a clean sample/example to do proof of concept.
The text was updated successfully, but these errors were encountered:
Visiting /p/foo
Returns
Then trying to visit another pad without stopping / starting Etherpad or closing browser returns..
So the isAuthenticated persistence isn't being kept
https://github.com/JohnMcLear/ep_oauth/blob/master/auth.js#L28 -- Am I okay to not use
app.use(express.methodOverride());
and the other express calls in the example app?These methods don't seem to be responsible for persistence.. I'm ultimately going to write to/read from the database layer but for now I want a clean sample/example to do proof of concept.
The text was updated successfully, but these errors were encountered: