从nuget获得SocialEmailLogin 1.0.11.3
我得到一个404.3 -在requestcb.auth上找不到
这并不奇怪,因为它不在我的项目中。问题是我在哪里可以得到它?我找遍了也找不到。
发布于 2018-06-12 01:48:43
必须由继承自SoftFluent.SocialEmailLogin.AuthCallbackHandler的AuthCallbackHandler类处理*.auth,才能响应sociallogin结果
在web.config中,您应该在 handler 部分拥有或添加一个处理程序的映射:
<add name="SocialEmailLogin" verb="*" path="*.auth" type="XXXX.Security.AuthCallbackHandler"/>请查看提供示例AuthCallbackHandler.cs实现的Example of SoftFluent Social Login Demo
https://stackoverflow.com/questions/50761974
复制相似问题