0
rajasekhard2015 created
Hi,
I want to add custom authentication token provider for passwordless authentication.
How can i add custom provider, please suggest me the proper steps
context.Services.AddAbpIdentity(options =>
{
options.Tokens.ProviderMap[GoogleAuthenticationProvider.Name] = new TokenProviderDescriptor(typeof(GoogleAuthenticationProvider));
})
.AddDefaultTokenProviders();
2 Answer(s)
-
1
I've created a Gist with 6 steps to implement this feature. https://gist.github.com/ebicoglu/04cedc99d0365f4d20a6233cca69cf5b
Note:
This guideline will be a document after next release (April 4, 2020). And the URL will be https://docs.abp.io/en/commercial/latest/guides/implementing-passwordless-authentication -
0
Thank you. it's working