本文整理汇总了C++中Http::Send方法的典型用法代码示例。如果您正苦于以下问题:C++ Http::Send方法的具体用法?C++ Http::Send怎么用?C++ Http::Send使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Http
的用法示例。
在下文中一共展示了Http::Send方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Send
//送信
void Result::Send() {
Song *song = songs->GetSong(songs->GetNowSong());
//曲IDのリクエスト作成
char songReq[126] = { 0 };
sprintf_s(songReq, 126, "song=%d", song->GetSongId());
//ユーザーIDのリクエスト作成
char userReq[32] = { 0 };
sprintf_s(userReq, 32, "user=%s", user->GetUserId());
//現在時刻の取得
int temp[5] = { 0 };
GetNowTime(temp);
//年月日のリクエスト作成
char dateReq[32] = { 0 };
sprintf_s(dateReq, 32, "date=%02d-%02d-%02d %02d-%02d", temp[0], temp[1], temp[2], temp[3], temp[4]);
//総合得点のリクエスト作成
char totalReq[16] = { 0 };
sprintf_s(totalReq, 16, "total=%d", this->total);
//区間別採点のリクエスト作成
char partReq[64] = { 0 };
sprintf_s(partReq, 64, "part=%d", score[0]);
for (int i = 1, n = this->max; i < n; i++) {
sprintf_s(partReq, 64, "%s/%d", partReq, score[i]);
}
//体の部位採点のリクエスト作成
char bodyPoint[4] = { 0 };
for (int i = 0; i < 4; i++) {
switch (point[i]) {
case 1:bodyPoint[i] = 'A'; break;
case 2:bodyPoint[i] = 'B'; break;
case 3:bodyPoint[i] = 'C'; break;
}
}
char bodyReq[32] = { 0 };
sprintf_s(bodyReq, 32, "body=%c/%c/%c/%c", bodyPoint[0], bodyPoint[1], bodyPoint[2], bodyPoint[3]);
//タイミングのリクエスト作成
char timingReq[16] = { 0 };
sprintf_s(timingReq, 16, "timing=%d", timing);
//表情のリクエスト作成
char expressionReq[16] = { 0 };
sprintf_s(expressionReq, 16, "expression=%d", expression);
//コメントのリクエスト作成
WCHAR w_comment[256] = { 0 };
mbstowcs(w_comment, comment, 256);
char commentReq[256] = { 0 };
sprintf_s(commentReq, 256, "comment=%s", w_comment);
//urlを作成
char url[512] = { 0 };
sprintf_s(url, 512, "http://globalstudios.jp/mai-archive/api_add.php?%s&%s&%s&%s&%s&%s&%s&%s&%s",
songReq, userReq, dateReq, totalReq, partReq, bodyReq, timingReq, expressionReq, commentReq);
Http http;
if(!http.Send(url))printfDx("httpエラー");
}