System.Windows.Controls.Webbrowser
認証に使用する Facebook oauth 応答文字列を受信するときに、奇妙な問題が発生しました。次のリクエスト URI が送信されます。
https://www.facebook.com/dialog/oauth?client_id=[APPID]&redirect_uri=https://www.facebook.com/connect/login_success.html&scope=publish_stream,read_friendlists,email&response_type=token
しかし、私が受け取ったのは のみhttps://www.facebook.com/connect/login_success.html
です。つまり、access_token はありません。
奇妙なことに、リクエスト URI をブラウザ (IE8 など) にコピー & ペーストすると、正しく auth-uri が返されます。
https://www.facebook.com/connect/login_success.html#access_token=[PROPERTOKEN]&expires_in=[PROPERNUMBER]
これが私が試したことです:(完全なC#クラス: http://pastebin.com/GePLHXnD )
まず、リクエスト URI を送信します。
private void Window_Loaded(object sender, RoutedEventArgs e)
{
StringBuilder authReqUri = new StringBuilder("https://www.facebook.com/dialog/oauth?client_id=");
authReqUri.Append(Properties.Settings.Default.FBAppID);
authReqUri.Append( "&redirect_uri=https://www.facebook.com/connect/login_success.html&scope=");
authReqUri.Append(Properties.Settings.Default.FBScope);
authReqUri.Append("&response_type=token");
Properties.Settings.Default.FBReqString = authReqUri.ToString();
return;
}
そして onWindowClose はトークンの解析を実行します:
/// <summary>
/// Property to indicate if authentication with facebook was a success
/// </summary>
public bool AuthenticatedSuccessfully
{
get
{
// Cast to a browser control to get at the current source
if (uiFrameLogin.Content.GetType() == typeof(WebBrowser))
{
WebBrowser webBrowser = (WebBrowser)uiFrameLogin.Content;
if (webBrowser.Source != null && webBrowser.Source.ToString().Contains("&error"))
return false; // look for an error
else
if (
webBrowser.Source != null &&
webBrowser.Source.AbsolutePath.Contains("login_success")
)
{
string temp;
temp = Regex.Replace(webBrowser.Source.Fragment, "^.*access_token=", "");
Properties.Settings.Default.FBAccessToken = System.Text.RegularExpressions.Regex.Replace(temp, "&.*", "");
temp = Regex.Replace(webBrowser.Source.Fragment, "^.*access_token=.*&", "");
Properties.Settings.Default.FBExpiresIn = System.Text.RegularExpressions.Regex.Replace(temp, "expires_in=", "");
return true; // if its at this page, we've auth'd successfully
}
}
return false; // cant find the success page, cant indicate a successful auth - no return false.
}
}