gpt4 book ai didi

c# - Facebook 登录在 localhost 中有效,但在 webhost 中无效

转载 作者:太空宇宙 更新时间:2023-11-03 13:25:21 24 4
gpt4 key购买 nike

我有一个类如下:

public class FacebookScopedClient : IAuthenticationClient
{
private string appId;
private string appSecret;
private string scope;

private const string baseUrl = "https://www.facebook.com/dialog/oauth?client_id=";
public const string graphApiToken = "https://graph.facebook.com/oauth/access_token?";
public const string graphApiMe = "https://graph.facebook.com/me?";

private string GetHTML(string URL)
{
string connectionString = URL;

try
{
var myRequest = (HttpWebRequest)WebRequest.Create(connectionString);
myRequest.Credentials = CredentialCache.DefaultCredentials;
//// Get the response
WebResponse webResponse = myRequest.GetResponse();
Stream respStream = webResponse.GetResponseStream();
////
var ioStream = new StreamReader(respStream);
string pageContent = ioStream.ReadToEnd();
//// Close streams
ioStream.Close();
respStream.Close();
return pageContent;
}
catch (Exception)
{
}
return null;
}

private IDictionary<string, string> GetUserData(string accessCode, string redirectURI)
{
string token = GetHTML(graphApiToken + "client_id=" + appId + "&redirect_uri=" + HttpUtility.UrlEncode(redirectURI) + "&client_secret=" + appSecret + "&code=" + accessCode);
if (string.IsNullOrEmpty(token))
{
return null;
}
string access_token = token.Substring(token.IndexOf("access_token=", StringComparison.Ordinal), token.IndexOf("&", System.StringComparison.Ordinal));
token = access_token.Replace("access_token=", string.Empty);
string data = GetHTML(graphApiMe + "fields=id,name,email,username,gender,link&" + access_token);

// this dictionary must contains
var userData = JsonConvert.DeserializeObject<Dictionary<string, string>>(data);
userData.Add("access_token", token);
return userData;
}

public FacebookScopedClient(string appId, string appSecret, string scope)
{
this.appId = appId;
this.appSecret = appSecret;
this.scope = scope;
}

public string ProviderName
{
get { return "facebook"; }
}

public void RequestAuthentication(System.Web.HttpContextBase context, Uri returnUrl)
{
string url = baseUrl + appId + "&redirect_uri=" + HttpUtility.UrlEncode(returnUrl.ToString()) + "&scope=" + scope;
context.Response.Redirect(url);
}

public AuthenticationResult VerifyAuthentication(System.Web.HttpContextBase context)
{
string code = context.Request.QueryString["code"];

string rawUrl = context.Request.Url.OriginalString;
//From this we need to remove code portion
rawUrl = Regex.Replace(rawUrl, "&code=[^&]*", "");

IDictionary<string, string> userData = GetUserData(code, rawUrl);

if (userData == null)
return new AuthenticationResult(false, ProviderName, null, null, null);

string id = userData["id"];
string username = userData["username"];
userData.Remove("id");
userData.Remove("username");

var result = new AuthenticationResult(true, ProviderName, id, username, userData);
return result;
}
}

上面的类在AuthConfig.cs中是这样注册的

OAuthWebSecurity.RegisterClient(
new FacebookScopedClient("blablabla", "blablabla",
"read_stream,status_update,publish_actions,offline_access,user_friends"), "Facebook", facebooksocialData);

我可以像这样在身份验证期间使用它

[AllowAnonymous]
public ActionResult ExternalLoginCallback(string returnUrl)
{
AuthenticationResult result =
OAuthWebSecurity.VerifyAuthentication(Url.Action("ExternalLoginCallback", new { ReturnUrl = returnUrl }));


if (!result.IsSuccessful)
{
return RedirectToAction("ExternalLoginFailure");
}
if (result.ExtraData.Keys.Contains("access_token"))
{
Session["token"] = result.ExtraData["access_token"];


}


if (OAuthWebSecurity.Login(result.Provider, result.ProviderUserId, createPersistentCookie: false))
{
return RedirectToLocal(returnUrl);
}

if (User.Identity.IsAuthenticated)
{
// If the current user is logged in add the new account
OAuthWebSecurity.CreateOrUpdateAccount(result.Provider, result.ProviderUserId, User.Identity.Name);
return RedirectToLocal(returnUrl);
}
// User is new, ask for their desired membership name
string loginData = OAuthWebSecurity.SerializeProviderUserId(result.Provider, result.ProviderUserId);
ViewBag.ProviderDisplayName = OAuthWebSecurity.GetOAuthClientData(result.Provider).DisplayName;
ViewBag.ReturnUrl = returnUrl;
var client = new ComputerBeacon.Facebook.Graph.User("me", Session["token"].ToString());
var firstName = client.FirstName;
var lastName = client.LastName;
var userName = client.Email;
return View("ExternalLoginConfirmation",
new RegisterExternalLoginModel
{
UserName = result.UserName,
FirstName = firstName,
LastName = lastName,
ExternalLoginData = loginData
});
}

现在这在 Localhost 中按预期 100% 工作,但是当我上传到远程服务器时,由于某些奇怪的原因它不工作。

AuthenticationResult result =
OAuthWebSecurity.VerifyAuthentication(Url.Action("ExternalLoginCallback", new { ReturnUrl = returnUrl }));

永远不会成功。请问我做错了什么。我已经更新了必要的 URL 的@ developers.facebook.com

谢谢

最佳答案

好吧,我看到了问题。

public AuthenticationResult VerifyAuthentication(System.Web.HttpContextBase context)
{
string code = context.Request.QueryString["code"];

string rawUrl = context.Request.Url.OriginalString;
if (rawUrl.Contains(":80/"))
{
rawUrl = rawUrl.Replace(":80/", "/");
}
if (rawUrl.Contains(":443/"))
{
rawUrl = rawUrl.Replace(":443/", "/");
}
//From this we need to remove code portion
rawUrl = Regex.Replace(rawUrl, "&code=[^&]*", "");

IDictionary<string, string> userData = GetUserData(code, rawUrl);

if (userData == null)
return new AuthenticationResult(false, ProviderName, null, null, null);

string id = userData["id"];
string username = userData["username"];
userData.Remove("id");
userData.Remove("username");

var result = new AuthenticationResult(true, ProviderName, id, username, userData);
return result;
}

感谢http://savvydev.com/authenticating-facebook-users-with-mvc-4-oauth-and-obtaining-scope-permissions/所有这些都是从哪里来的

感谢大家的贡献。

关于c# - Facebook 登录在 localhost 中有效,但在 webhost 中无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22605305/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com