Reputation: 329
Got SocialEmailLogin 1.0.11.3 from nuget
I get a 404.3 - Not Found on requestcb.auth
That's not weird because it is not in my project. The question is where can i get it? Been looking al over but could not find.
Upvotes: 0
Views: 34
Reputation: 79
*.auth has to be handled by your AuthCallbackHandler class inheriting from SoftFluent.SocialEmailLogin.AuthCallbackHandler in order to answer to the sociallogin result
In web.config you should have or add in the handlers section one mapping of your handler :
<add name="SocialEmailLogin" verb="*" path="*.auth" type="XXXX.Security.AuthCallbackHandler"/>
Please look at Example of SoftFluent Social Login Demo that provide a sample AuthCallbackHandler.cs implementation
Upvotes: 1