gpt4 book ai didi

c - C 中发送 HTTP POST 请求失败

转载 作者:行者123 更新时间:2023-11-30 20:02:24 25 4
gpt4 key购买 nike

我尝试使用 Code::Blocks .c 发送 HTTP POST 请求,但我不知道该消息出了什么问题,我在 google 中搜索,所有教程都教我像我那样做,所以如果有人可以帮助我,我会谢谢你,这是我对该网站的请求::

    sprintf(buffer, "POST /index.php HTTP/1.1\r\nContent-Lenght: %d\r\n", 7+strlen(action)+3+strlen(id));
strcat(buffer, "Host: www.testserv.com \r\n\r\n");
strcat(buffer, "action=");strcat(buffer, action);
strcat(buffer, "&");
strcat(buffer, "id=");strcat(buffer, id);

printf("Requisicao:\n%s\n\n", buffer);

send(s, buffer, strlen(buffer), 0);

这个要求看起来是对的,但她没有做错什么吗?

----已编辑---问题是:我的 post 请求不起作用,服务器只解释 HTTP header ,但表单 itens 的值却不起作用!

解释该网站:该站点有一个index.php 页面和一个由index.php 调用的第二个页面:send.php。索引页有一个包含 3 个项目的表单:2 个文本框(操作和 id)和一个提交按钮,我在 2 个文本框上写任何内容(用于测试),当我按下提交时,通过 POST 方法的表单将调用发送.php 页面,此页面将向我们展示我在 2 个文本框中编写的内容,我将向您展示的功能是与服务器连接,并使用 POST 方法请求 send.php 并尝试向服务器传递文本框变量的值。

这是完整的功能:

int enviar(const char* action, const char* id){

#define ACTION "action="
#define ID "&id="

char head[500], buff_msg[500];
int s, len;
struct sockaddr_in inf;

if((s=socket(AF_INET, SOCK_STREAM, 0)) == -1)
return -1;

inf.sin_family = AF_INET;
inf.sin_port = htons(80);
inf.sin_addr.s_addr = inet_addr("10.1.10.1");
memset(inf.sin_zero, 0, 8);

if(connect(s, (struct sockaddr*)&inf, sizeof(inf)) == -1)
return -1;

memset(head, 0, 500);
memset(buff_msg, 0, 500);

sprintf(head, "POST /page_called_by_the_index.php / HTTP/1.1\r\nContent-Length: %d\r\n",
strlen(ACTION)+strlen(action)
+strlen(ID)+strlen(id));
strcat(head, "host: the_server.com\r\n\r\n");
strcat(head, ACTION);
strcat(head, action);
strcat(head, ID);
strcat(head, id);

printf("Header HTTP[%d]:\n%s\n", strlen(cab), cab);

len = send(s,head, strlen(cab), 0);

if(len <= 0){
perror("send");
return 0;
}

printf("%d bytes have been sent\n", len);

while((len=recv(s, buff_msg, 500, 0)) > 0){
printf("%d bytes read:\n%s\n", len, buff_msg);
memset(buff_msg, 0, 500);
}

return 1;}

header 请求很好,因为服务器发回了 200 OK,但是值不被解释!

感谢您的帮助。

最佳答案

您的 POST 命令中有几个错误

Content-Lenght

应该是

Content-Length

7+strlen(action)+3+strlen(id)
假设 &id= 为 3,

太短了一个字符(这需要 4 个字符,因此您的内容长度将省略 id 的最后一个字符)。如果您对当前正在硬编码其长度的字符串使用变量(或定义),则会更安全

#define ACTION "action="
#define ID "&id="

sprintf(buffer, "POST /index.php HTTP/1.1\r\nContent-Length: %d\r\n",
sizeof(ACTION)-1+strlen(action)+sizeof(ID)-1+strlen(id));
strcat(buffer, "Host: www.testserv.com \r\n\r\n");
strcat(buffer, ACTION);
strcat(buffer, action);
strcat(buffer, ID);
strcat(buffer, id);

关于c - C 中发送 HTTP POST 请求失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17427281/

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