We are trying to setup a white label on our project that uses OWIN(includes FB, google, Live logins). Is there a way to setup their API credential dynamically, say if they changes the domain the settings will change.
I think owin loads earlier than MVC? Is there a way that we can load it on Global.asax(Request)?
public partial class Startup
{
public void Configuration(IAppBuilder app)
{
ConfigureAuth(app);
}
}
UPDATE:
In other words a single Application will host many domains and sub domains(white labeling).
See Question&Answers more detail:os