我在AuthConfig.cs(MVC应用程序)文件中有以下代码,
public static void RegisterAuth()
{
OAuthWebSecurity.RegisterGoogleClient();
OAuthWebSecurity.RegisterClient(new WordpressOpenId(), "wordpress", null);
}
public class WordpressOpenId : OpenIdClient
{
public WordpressOpenId()
: base("wordpress", "https://example.wordpress.com")
{
}
}
尝试登录WordPress时,显示“未找到OpenID端点”错误。 我可以使用openid连接谷歌和雅虎,但我单独使用Wordpress有问题。 你能告诉我需要做什么吗?