无法获得HTTP POST请求以正常工作 [英] Can't get HTTP POST request to work properly

查看:75
本文介绍了无法获得HTTP POST请求以正常工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用HTTP POST请求将正在处理的游戏的文件发送到游戏的网站.当我使用HTML页面上的表单发送文件时,它可以正常工作.但是,我无法在游戏中模拟相同的事物.我收到的响应代码为200,表明请求已成功执行,但是,上载脚本表明它已接收到GET请求,并且$ _FILES和$ _POST数组为空.我已经在Wireshark中查看了HTML表单的POST和游戏的POST的输出,但是无法检测到两者之间的任何有意义的区别. (如果我知道如何精确地复制HTML表单的POST方法,那么可以,但是我认为这是不可能的.)

I'm trying to send a file from a game I'm working on to the game's website using an HTTP POST request. When I send the file using a form on an HTML page, it works fine. However, I have been unable to simulate the same thing inside the game. I am receiving a response code of 200 indicating that the request went successfully, however, the upload script indicates that it received a GET request, and the $_FILES and $_POST arrays are empty. I have looked at the output of both the HTML form's POST and the game's POST in Wireshark, but have been unable to detect any meaningful differences between the two. (If I knew how to duplicate the HTML form's POST method exactly, I would, but I don't think that's possible.)

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

Anyway, here's the code that I'm using to send it. Thanks!

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正在执行.并不是说流量没有到达服务器.奇怪.

I tried to answer this earlier, but I guess it didn't get through. Anyway, I feel pretty silly. It's working perfectly now. The reason it wasn't working is because I had the second parameter of InternetOpen() as "wrackgame.com", instead of "www.wrackgame.com". I have no idea why that prevented it from working - especially considering that my upload script, /leaderboard/upload_file.php, was being executed. It's not like the traffic wasn't reaching the server. Strange.

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

Anyway, thanks for the help everyone!

这篇关于无法获得HTTP POST请求以正常工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆