我想获得用户AccessToken。
当用户点击注册/登录按钮时:
$.ajax({
url: 'Register',
type: 'GET',
data: { m:true },
contentType: 'application/json; charset=utf-8',
success: function (response) {
if (response.success) {
} else {
}
},
error: function () {
}
});
我的注册方法:
Uri uri = new Uri(FacebookHelpers.GetFacebookLoginURL());
var res = await FacebookHelpers.FacebookRequest<object>(uri).ConfigureAwait(false);
在res中,我想从FacebookRequest获取结果来获取代码,而不是交换访问令牌的代码。
我的GetFacebookLoginUrl函数:
var redirectUri = "https://www.facebook.com/connect/login_success.html";
var uri = GetUri("https://www.facebook.com/dialog/oauth",
Tuple.Create("client_id", FacebookAppId),
Tuple.Create("redirect_uri", redirectUri),
Tuple.Create("response_type", "code"),
Tuple.Create("scope", "public_profile,email"),
Tuple.Create("state", Convert.ToString(new Random().Next(9999)))
);
在我的FacebookRequest功能中:
public static async Task<T> FacebookRequest<T>(Uri uri)
{
string json;
using (HttpClient client = new HttpClient())
{
json = await client.GetStringAsync(uri).ConfigureAwait(false);
}
try
{
var result = JsonConvert.DeserializeObject<T>(json);
return result;
}
catch (JsonException ex)
{
throw new ArgumentException("Unable to deserialize the Facebook response.", ex);
}
}
当FacebookRequest函数尝试从提供的URL获取代码时,会出现此问题。
解析值时遇到意外的字符:&lt;。路径'',行 0,位置0。
Json响应包含调用方法的相同页面。 FacebookRequest不返回代码,而是返回成功。
有什么想法吗?
目标:我希望从我的数据库中获取用户并将其帐户与我的机器人相关联。或者如果用户不存在,首先注册并与机器人链接。
答案 0 :(得分:1)
您无法在后台加载Facebook登录对话框 - 您必须将用户重定向到该地址。它必须在用户的浏览器中调用;如果您尝试在后台请求它,那将无效。
至于是否获得了返回的代码或访问令牌:您可以指定您希望直接返回访问令牌 - 但在这种情况下,令牌将在重定向URI的片段部分中传递,这意味着您只能使用客户端代码从那里获取它。我想这不是一个选择。 (如果您需要更多信息,请参阅response_type
和可能的值,https://developers.facebook.com/docs/facebook-login/manually-build-a-login-flow#logindialog)