3

我正在开发一个使用 twitter API 的 WPF 应用程序。为了显示 twitter 身份验证页面,我正在使用 WPF Web 浏览器控件。我能够成功登录并使用 twitter API。我的问题是我需要清除 Web 浏览器的 cookie 才能实现注销功能。有什么方法可以清除 WPF Web 浏览器中的会话 cookie?

4

3 回答 3

6

我昨天遇到了这个问题,今天终于想出了一个完整的解决方案。此处提到了答案,此处此处更详细地介绍了答案。

这里的主要问题是WebBrowser(在 WPF 和 WinForms 中)不允许您修改(删除)现有会话 cookie。这些会话 cookie 阻止了多用户单设备体验的成功。

上面链接中的 StackOverflow 响应省略了一个重要部分,它需要使用不安全的代码块,而不是使用Marshal服务。下面是一个完整的解决方案,可以放入您的项目中以抑制会话 cookie 持久性。

public static partial class NativeMethods
{
    [DllImport("wininet.dll", CharSet = CharSet.Auto, SetLastError = true)]
    private static extern bool InternetSetOption(IntPtr hInternet, int dwOption, IntPtr lpBuffer, int dwBufferLength);

    private const int INTERNET_OPTION_SUPPRESS_BEHAVIOR = 81;
    private const int INTERNET_SUPPRESS_COOKIE_PERSIST = 3;

    public static void SuppressCookiePersistence()
    {
        var lpBuffer = Marshal.AllocCoTaskMem(Marshal.SizeOf(typeof(int)));
        Marshal.StructureToPtr(INTERNET_SUPPRESS_COOKIE_PERSIST, lpBuffer, true);

        InternetSetOption(IntPtr.Zero, INTERNET_OPTION_SUPPRESS_BEHAVIOR, lpBuffer, sizeof(int));

        Marshal.FreeCoTaskMem(lpBuffer);
    }
}
于 2015-01-08T21:35:10.483 回答
3

检查以下内容,

http://social.msdn.microsoft.com/Forums/en/wpf/thread/860d1b66-23c2-4a64-875b-1cac869a5e5d

private static void _DeleteSingleCookie(string name, Uri url)
    {
        try
        {
            // Calculate "one day ago"
            DateTime expiration = DateTime.UtcNow - TimeSpan.FromDays(1);
            // Format the cookie as seen on FB.com.  Path and domain name are important factors here.
            string cookie = String.Format("{0}=; expires={1}; path=/; domain=.facebook.com", name, expiration.ToString("R"));
            // Set a single value from this cookie (doesnt work if you try to do all at once, for some reason)
            Application.SetCookie(url, cookie);
        }
        catch (Exception exc)
        {
            Assert.Fail(exc + " seen deleting a cookie.  If this is reasonable, add it to the list.");
        }
    }
于 2012-05-30T08:29:11.773 回答
0

我没有对此进行测试,但我认为最好的方法是在页面上定义一个清除 cookie 的 Javascript 方法(如果可以的话)。

document.cookie='c_user=;expires=Thu, 01 Jan 1970 00:00:00 GMT;domain=.facebook.com';

(或任何 cookie 名称)。然后您可以在WebBrowser控件上使用InvokeScript方法。

于 2012-05-30T06:22:18.330 回答