gpt4 book ai didi

c++ - 任何人都知道为什么这个 POST with WinHttp 失败了

转载 作者:行者123 更新时间:2023-11-28 03:11:11 25 4
gpt4 key购买 nike

我正在尝试向 PHP 脚本发送 POST 请求。我已经开始工作,但在使用 POST 时遇到了一些问题。当它应该显示 post 参数的值时,结果总是空白。

#include <windows.h>
#include <wininet.h>

#pragma comment(lib, "Crypt32.lib")
#pragma comment(lib, "wininet.lib")

void PrintError(char *szFunc)
{
char szErr[128];
wsprintf(szErr, "%s: %d\n", szFunc, GetLastError());
OutputDebugString(szErr);
}

int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow)
{
BOOL bCookie;
DWORD dwFlags;
DWORD dwReadSize;
DWORD dwBuffLen = sizeof(dwFlags);
HINTERNET hInternet, hSession, hRequest;
char szBuffer[256 * 1024] = "";
SIZE_T nBufferSize = 0;

hInternet = InternetOpen("Mozilla/5.0 (Windows NT 6.1; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
if(hInternet == NULL)
{
PrintError("InternetOpen");
return 0;

}

hSession = InternetConnect(hInternet, "localhost", 443, NULL, NULL, INTERNET_SERVICE_HTTP, 0, NULL);
if(hSession == NULL)
{
PrintError("InternetConnet");
return 0;
}

hRequest = HttpOpenRequest(hSession, "GET", "/index.php", "HTTP/1.1", NULL, NULL, INTERNET_FLAG_SECURE|INTERNET_FLAG_RELOAD|INTERNET_FLAG_NO_CACHE_WRITE|INTERNET_FLAG_NO_COOKIES, NULL);
if(hRequest == NULL)
{
PrintError("HttpOpenRequest");
return 0;
}

// Need to do this to support self signed SSL certificates
InternetQueryOption(hRequest, INTERNET_OPTION_SECURITY_FLAGS, (LPVOID)&dwFlags, &dwBuffLen);
dwFlags = INTERNET_FLAG_IGNORE_CERT_CN_INVALID|SECURITY_FLAG_IGNORE_UNKNOWN_CA;
InternetSetOption (hRequest, INTERNET_OPTION_SECURITY_FLAGS, &dwFlags, sizeof(dwFlags));

// Set cookie data
if(!HttpAddRequestHeaders(hRequest, "Cookie: my_cookie=chocolate_chip\r\n", -1L, HTTP_ADDREQ_FLAG_ADD))
{
PrintError("HttpAddRequestHeaders");
return 0;
}

if(!HttpSendRequest(hRequest, NULL, 0, NULL, 0))
{
PrintError("HttpSendRequest");
return 0;
}

for(;;)
{
dwReadSize = 0;
InternetReadFile(hRequest, szBuffer + nBufferSize, sizeof(szBuffer) - nBufferSize - 1, &dwReadSize);
if(!dwReadSize)
{
break;
}
szBuffer[nBufferSize + dwReadSize] = 0;
nBufferSize += dwReadSize;
}

if(strstr(szBuffer, "chocolate_chip"))
{
bCookie = true;
OutputDebugString("Cookie Is Working...\n");
}

hRequest = HttpOpenRequest(hSession, "POST", "/index.php", "HTTP/1.1", NULL, NULL, INTERNET_FLAG_SECURE|INTERNET_FLAG_RELOAD|INTERNET_FLAG_NO_CACHE_WRITE|INTERNET_FLAG_NO_COOKIES, NULL);
if(hRequest == NULL)
{
PrintError("HttpOpenRequest");
return 0;
}

// Need to do this to support self signed SSL certificates
InternetQueryOption(hRequest, INTERNET_OPTION_SECURITY_FLAGS, (LPVOID)&dwFlags, &dwBuffLen);
dwFlags = INTERNET_FLAG_IGNORE_CERT_CN_INVALID|SECURITY_FLAG_IGNORE_UNKNOWN_CA;
InternetSetOption (hRequest, INTERNET_OPTION_SECURITY_FLAGS, &dwFlags, sizeof(dwFlags));

// Should be at the top, just for debug..
char *szPostData = "my_post=HelloWorld!";
if(!HttpSendRequest(hRequest, "Content-Type: application/x-www-form-urlencoded", -1, (LPVOID)szPostData, sizeof(szPostData)))
{
PrintError("HttpOpenRequest");
return 0;
}

// Clear the buffer from before
memset(szBuffer, 0, sizeof(szBuffer));

// Maybe there is a better way to read data?
for(;;)
{
dwReadSize = 0;
InternetReadFile(hRequest, szBuffer + nBufferSize, sizeof(szBuffer) - nBufferSize - 1, &dwReadSize);
if(!dwReadSize)
{
break;
}
szBuffer[nBufferSize + dwReadSize] = 0;
nBufferSize += dwReadSize;
}

MessageBox(0, szBuffer, 0, 0); // Always empty for post

InternetCloseHandle(hRequest);
InternetCloseHandle(hSession);
InternetCloseHandle(hInternet);
return 0;
}

我使用的 PHP 代码只是为了让您看到我在这里尝试做什么。

<?php   

if(isset($_COOKIE['my_cookie']))
{
echo $_COOKIE['my_cookie'];
}

if(isset($_POST['my_post']))
{
echo $_POST['my_post'];
}

?>

已经在这里待了几个小时。有人知道怎么回事吗?

最佳答案

char *szPostData = "my_post=HelloWorld!";   
if(!HttpSendRequest(hRequest, "Content-Type: application/x-www-form-urlencoded", -1, (LPVOID)szPostData, sizeof(szPostData)))

sizeof(szPostData) 并不像您想象的那样。它计算 char* 指针的字节大小,而不是它指向的数据。

关于c++ - 任何人都知道为什么这个 POST with WinHttp 失败了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18434170/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com