C++ を使用して http get リクエストを送信する必要があります。現在の私のコードは次のとおりです。
#include <iostream>
#include <fstream>
#include <cstdlib>
using namespace std;
int main ()
{
ifstream llfile;
llfile.open("C:/AdobeRenderServerLog.txt");
if(!llfile.is_open()){
exit(EXIT_FAILURE);
}
char word[50];
llfile >> word;
cout << word;
llfile.close();
return 0;
}
リクエストは次の宛先に送信されます。
www.example.com/logger.php?data=単語