根据“http://msdn.microsoft.com/en-us/library/cc196998%28v=VS.85%29.aspx”中的功能描述,我编写了以下代码以尝试获取IE保护的cookie:
public static string GetProtectedModeCookie(string lpszURL, string lpszCookieName, uint dwFlags)
{
var size = 255;
var sb = new System.Text.StringBuilder(size);
var acturalSize = sb.Capacity;
var code = IEGetProtectedModeCookie(lpszURL, lpszCookieName, sb, ref acturalSize, dwFlags);
if ((code & 0x80000000) > 0) return string.Empty;
if (acturalSize > size)
{
sb.EnsureCapacity(acturalSize);
IEGetProtectedModeCookie(lpszURL, lpszCookieName, sb, ref acturalSize, dwFlags);
}
return sb.ToString();
}
[DllImport("ieframe.dll", SetLastError = true)]
public static extern uint IEGetProtectedModeCookie(string lpszURL, string lpszCookieName, System.Text.StringBuilder pszCookieData, ref int pcchCookieData, int dwFlags);
测试此功能:
var cookies = GetProtectedModeCookie("http://bbs.pcbeta.com/", null, 0);
但api IEGetProtectedModeCookie 始终返回 0x80070057 ,表示一个或多个参数无效。 我很困惑,经过大量的尝试终于失败了,只得到了这个结果。有人能帮助我吗?
答案 0 :(得分:5)
如果IEGetProtectedModeCookie认为该网址不打算在保护模式下打开,则会返回E_INVALIDARG。它使用IEIsProtectedModeURL API来确定这一点。因此,如果您已将该URL放入受信任区域或诸如此类,那么您将遇到此错误。如果您未能传递URL或未能将指针传递给缓冲区大小的整数,则基础InternetGetCookie API将返回E_INVALIDARG。
另请注意,IEGetProtectedModeCookie API无法在高完整性(例如管理员)流程中运行;它将返回ERROR_INVALID_ACCESS(0x8000000C)。
这是我使用的代码:
[DllImport("ieframe.dll", CharSet = CharSet.Unicode, EntryPoint = "IEGetProtectedModeCookie", SetLastError = true)]
public static extern int IEGetProtectedModeCookie(String url, String cookieName, StringBuilder cookieData, ref int size, uint flag);
private void GetCookie_Click(object sender, EventArgs e)
{
int iSize = 4096;
StringBuilder sbValue = new StringBuilder(iSize);
int hResult = IEAPI.IEGetProtectedModeCookie("http://www.google.com", "PREF", sbValue, ref iSize, 0);
if (hResult == 0)
{
MessageBox.Show(sbValue.ToString());
}
else
{
MessageBox.Show("Failed to get cookie. HRESULT=0x" + hResult.ToString("x") + "\nLast Win32Error=" + Marshal.GetLastWin32Error().ToString(), "Failed");
}
}
答案 1 :(得分:1)
Charset 参数必须存在于 DllImport 属性中。更改API声明以遵循将很有效:
[DllImport("ieframe.dll", SetLastError = true, CharSet = CharSet.Unicode)]
public static extern uint IEGetProtectedModeCookie(string lpszURL, string lpszCookieName, System.Text.StringBuilder pszCookieData, ref int pcchCookieData, uint dwFlags);
如果错过 Charset 参数,此API将始终返回 0x80070057 ,表示一个或多个参数无效。