VC++设置与获取cookies的几种方法

最简单的获取cookies的是用InternetGetCookie,函数原型如下:

BOOL InternetGetCookie(
LPCTSTR lpszUrl,
LPCTSTR lpszCookieName,
LPSTR lpCookieData,
LPDWORD lpdwSize
);

这样几句就可以了

char Cookie[300];
char *sURL = "http://host286.com/articles.asp?id=653";
InternetGetCookie(sURL,NULL,Cookie,&leng);

缺陷是nternetGetCookie 只读取 COOKIES目录下生成的COOKIE,遇到HTTPONLY属性则不生成本地COOKIES中的文件,而是直接通过HTTP头来传输。

这时可以用下列代码

char * pszURL = "http://host286.com/";
BOOL bRes = CInternetSession::GetCooke(pszURL,"",strCookie);

DWORD buflen = 300;
char strCookie[300] = {0};
CString strCookie;
fileGet->QueryInfo(HTTP_QUERY_SET_COOKIE,strCookie,&buflen,NULL);

或者

CString strCookie;
     char * pszURL = "http://host286.com/";
     BOOL bRes = CInternetSession::GetCookie(pszURL,"",strCookie);

设置cookies的方法:
InternetSetCookie("http://host286.com",NULL,"TestData=Test;expires=Sat,01-Jan-2012 00:00:00GMT");

你可能感兴趣的:(软件开发资料)