无法让 HTTP POST 请求正常工作

标签 c winapi http post

我正在尝试使用 HTTP POST 请求将我正在开发的游戏的文件发送到该游戏的网站。当我使用 HTML 页面上的表单发送文件时,它工作正常。但是,我一直无法在游戏中模拟同样的事情。我收到一个 200 的响应代码,表示请求成功,但是,上传脚本表示它收到了 GET 请求,并且 $_FILES 和 $_POST 数组为空。我在 Wireshark 中查看了 HTML 表单的 POST 和游戏的 POST 的输出,但无法检测到两者之间有任何有意义的差异。 (如果我知道如何准确复制 HTML 表单的 POST 方法,我会的,但我认为那不可能。)

无论如何,这是我用来发送它的代码。谢谢!

HINTERNET           hInternet;
HINTERNET           hConnect;
HINTERNET           hRequest;
INTERNET_BUFFERS    Buffers;
DWORD               dwBytesWritten;
DWORD               dwNumBytesToWrite;
char                szBoundary[32];
char                szContentTypeHeader[64];
char                szFileHeader[256];
char                szFileFooter[4];
char                szBodyFooter[32];
ULONG               ulTotalBytesWritten;
ULONG               ulOffset;
ULONG               ulContentLength;

// Get a handle for working with the Internet.
hInternet = InternetOpen( "Wrack", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0 );
if ( hInternet == NULL )
    return ( false );

// Open an HTTP session for the site.
hConnect = InternetConnect( hInternet, "wrackgame.com", INTERNET_DEFAULT_HTTP_PORT, NULL, NULL, INTERNET_SERVICE_HTTP, 0, NULL );
if ( hConnect == NULL )
{
    InternetCloseHandle( hInternet );

    return ( false );
}

// Open the POST request.
hRequest = HttpOpenRequest( hConnect, "POST", "leaderboard/upload_file.php", NULL, "http://www.wrackgame.com/leaderboard/upload.html", NULL, 0, NULL );
if ( hRequest == NULL )
{
    InternetCloseHandle( hInternet );
    InternetCloseHandle( hConnect );

    return ( false );
}

// Generate our various headers and footers.
sprintf_s( szBoundary, "----%04x%04x%04x", rand( ) % 0xffff, rand( ) % 0xffff, rand( ) % 0xffff );
sprintf_s( szContentTypeHeader, "Content-Type: multipart/form-data; boundary=%s", szBoundary );
sprintf_s( szFileHeader, "--%s\r\nContent-Disposition: form-data; name=\"%s\"; filename=\"%s\"\r\nContent-Type: application/octet-stream\r\n\r\n", szBoundary, "file", "testreplay.wrp" );
sprintf_s( szFileFooter, "\r\n" );
sprintf_s( szBodyFooter, "--%s--\r\n", szBoundary );

// Build our header.
if ( HttpAddRequestHeaders( hRequest, szContentTypeHeader, -1, HTTP_ADDREQ_FLAG_ADD ) == false )
{
    InternetCloseHandle( hInternet );
    InternetCloseHandle( hConnect );
    InternetCloseHandle( hRequest );

    return ( false );
}

// Calculate how much data we'll be sending.
ulContentLength = network_CalcContentLength( szFileHeader, szFileFooter, szBodyFooter );

// Initialize our buffers.
memset( &Buffers, 0, sizeof( INTERNET_BUFFERS ));
Buffers.dwStructSize = sizeof( INTERNET_BUFFERS );
Buffers.dwBufferTotal = ulContentLength;

// Send our HTTP request.
if ( HttpSendRequestEx( hRequest, &Buffers, NULL, HSR_INITIATE, NULL ) == false )
{
    InternetCloseHandle( hInternet );
    InternetCloseHandle( hConnect );
    InternetCloseHandle( hRequest );

    return ( false );
}

// Send the header.
ulTotalBytesWritten = 0;
if ( InternetWriteFile( hRequest, szFileHeader, strlen( szFileHeader ), &dwBytesWritten ) == false )
{
    InternetCloseHandle( hInternet );
    InternetCloseHandle( hConnect );
    InternetCloseHandle( hRequest );

    return ( false );
}
ulTotalBytesWritten += dwBytesWritten;

// Next, write the body of the replay.
ulOffset = 0;
while ( ulOffset < (DWORD)REPLAY_GetReplaySize( ))
{
    // Determine how many bytes of the replay to send. If we're almost
    // done, send less than 1024 bytes.
    dwNumBytesToWrite = min( 1024, REPLAY_GetReplaySize( ) - ulOffset );

    // Send a piece of the replay and log how many bytes we actually
    // transferred.
    if ( InternetWriteFile( hRequest, REPLAY_GetReplayData( ) + ulOffset, dwNumBytesToWrite, &dwBytesWritten ) == false )
    {
        InternetCloseHandle( hInternet );
        InternetCloseHandle( hConnect );
        InternetCloseHandle( hRequest );

        return ( false );
    }
    ulTotalBytesWritten += dwBytesWritten;

    // Increment the offset of the replay buffer.
    ulOffset += 1024;
}

// Send our file footer.
if ( InternetWriteFile( hRequest, szFileFooter, strlen( szFileFooter ), &dwBytesWritten ) == false )
{
    InternetCloseHandle( hInternet );
    InternetCloseHandle( hConnect );
    InternetCloseHandle( hRequest );

    return ( false );
}
ulTotalBytesWritten += dwBytesWritten;

// Send our body footer.
if ( InternetWriteFile( hRequest, szBodyFooter, strlen( szBodyFooter ), &dwBytesWritten ) == false )
{
    InternetCloseHandle( hInternet );
    InternetCloseHandle( hConnect );
    InternetCloseHandle( hRequest );

    return ( false );
}
ulTotalBytesWritten += dwBytesWritten;

// Close our request now that we're done.
if ( HttpEndRequest( hRequest, NULL, 0, NULL ) == false )
{
    InternetCloseHandle( hInternet );
    InternetCloseHandle( hConnect );
    InternetCloseHandle( hRequest );

    return ( false );
}

InternetCloseHandle( hInternet );
InternetCloseHandle( hConnect );
InternetCloseHandle( hRequest );

// No need to do anything more!
return ( true );

最佳答案

我之前试图回答这个问题,但我想它没有通过。反正我觉得挺傻的。它现在工作得很好。它不起作用的原因是因为我将 InternetOpen() 的第二个参数设置为“wrackgame.com”,而不是“www.wrackgame.com”。我不知道为什么这会阻止它工作 - 特别是考虑到我的上传脚本/leaderboard/upload_file.php 正在执行。这不像流量没有到达服务器。奇怪。

无论如何,感谢大家的帮助!

关于无法让 HTTP POST 请求正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8951220/

相关文章:

c++ - 使用 SendInput 发送两个或多个字符

javascript - Node js 中的请求响应周期如何与外部 I/O 配合使用

rest - 对于不同的 http 方法,对于无效 URL 的请求返回哪种状态?

c - 程序崩溃并显示 0xC0000005

c - 在c中绘制二叉树到控制台

c - pthread_create 传递带有两个变量的函数

c - 在有序对结构数组上实现二进制搜索

windows - CSingleLock 实现在 Windows 7 上工作正常,但在 Win XP 上以死锁结束

c++ - 下载速度到处跳

http - 配置httpbuilder ng的http客户端不跟随302重定向