I'm implementing a site that uses everyauth (under control by Mongoose-auth) to login/signup users.
The system also needs to request OAuth access to 3rd party services on a nested model of the user (let's call them user.channels[]).
I'd like to reuse the everyauth stuff for capturing the OAuth credentials for the user.channels[]. The problem is that I can't figure out how to get a seperate, unique everyauth object on the server. The one I have access to is configured for the login/signup story, which is different from my capturing story.
Any ideas on what the best approach to this problem would be?
Many thanks in advanced
Adam