Open tyrw opened 4 years ago
We have a working proof of concept for this, with an API like:
server.auth.strategy('twitter', 'bell', {
provider: 'twitter',
password: 'cookie_encryption_password_secure',
clientFunction: async function (request, settings) {
// Set clientId & clientSecret based on request info, e.g.
// settings.clientId = 'aaaaaaaaaaaa'
// settings.clientSecret = 'aaaaaaaAAAAAAAAaaaaaaaa'
}
})
It does require some changes to how & where clientId
and clientSecret
are passed around.
Technically it's structured so that any of the settings
could be looked up & assigned based on information in the request (not just clientId
and clientSecret
).
If we write up tests and documentation covering this use case, will you accept a PR for it, or do you consider this outside the scope of the normal use?
Is anyone monitoring the issues here?
Is anyone monitoring the issues here?
Yes. A new group of maintainers has taken over hapi recently, and we're still getting everything up and running. Sorry for any delay.
Support plan
Context
How can we help?
We would like to allow our users to build out social logins custom to their project. This means that, within each project and for each social provider, there would be a different
clientId
andclientSecret
.Example: Project A, Twitter login:
clientId: aaaaaaaaaaaaaaaa
clientSecret: aaaaaaaaAAAAAAAAaaaaaaaAAAAAAA
Project B, Twitter login:
clientId: bbbbbbbbbbbbbbbb
clientSecret: bbbbbbbBBBBBBBBBbbbbbbbBBBBBBB
However the documented method is to configure for a single application for each provider and then register a route handler:
Registration
Route handler
Is it possible to perform the Registration step in some other way? Potential solutions might include:
clientId
/clientSecret
another wayclientId
/clientSecret
and change later in route handlerclientId
andclientSecret
with a method in the options object of the registration, based on a project id in the URLclientId
andclientSecret
as a method in theconfig
object of the route config, based on a project id in the URLIf this is supported, we would love a hint at the documentation. If it is not supported, we would love a nudge in the right direction for how we might implement this ourselves.
Thank you!