发送HTTP“邮报”请求PHP代码在C或C ++(Send Http “Post” Request

2019-06-23 19:50发布

我试图发送一个“后” reguest我的PHP文件,并获得信息回来,它工作正常,但

它打印从PHP文件我响应之前还打印一些内容。 这是它打印

第一:

HTTP/1.1 200 OK
Date: Fri, 20 Apr 2012 10:19:12 GMT
Server: Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8r DAV/2 PHP/5.3.6
X-Powered-By: PHP/5.3.6
Content-Length: 12
Connection: close
Content-Type: text/html

然后我的回应:

hello world

我怎么只能打印什么,我从myphp代码获得,无需:

HTTP/1.1 200 OK
Date: Fri, 20 Apr 2012 10:19:12 GMT
Server: Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8r DAV/2 PHP/5.3.6
X-Powered-By: PHP/5.3.6
Content-Length: 12
Connection: close
Content-Type: text/html

我使用的代码是:

#include <arpa/inet.h>
#include <assert.h>
#include <errno.h>
#include <netinet/in.h>
#include <signal.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/wait.h>
#include <netdb.h>
#include <unistd.h>

#define SA      struct sockaddr
#define MAXLINE 4096
#define MAXSUB  200


#define LISTENQ         1024

extern int h_errno;


ssize_t process_http(int sockfd, char *host, char *page, char *poststr)
{
     char sendline[MAXLINE + 1], recvline[MAXLINE + 1];
    ssize_t n;
    snprintf(sendline, MAXSUB,
             "POST %s HTTP/1.0\r\n"
             "Host: %s\r\n"
             "Content-type: application/x-www-form-urlencoded\r\n"
             "Content-length: %d\r\n\r\n"
             "%s", page, host, strlen(poststr), poststr);

    write(sockfd, sendline, strlen(sendline));
    while ((n = read(sockfd, recvline, MAXLINE)) > 0) {
        recvline[n] = '\0';
        printf("%s", recvline);  // <-- this
    }
    return n;

}





int main(void)
{



    int sockfd;
    struct sockaddr_in servaddr;

    char **pptr;
    //********** You can change. Puy any values here *******
    char *hname = "localhost";
    char *page = "/mysql_update.php";
    char *poststr = "server=dd sd sdsdt\n";
    //*******************************************************

    char str[50];
    struct hostent *hptr;
    if ((hptr = gethostbyname(hname)) == NULL) {
        fprintf(stderr, " Server down error for host: %s: %s",
                hname, hstrerror(h_errno));
        exit(1);
    }
    printf("hostname: %s \n", hptr->h_name);
    if (hptr->h_addrtype == AF_INET
        && (pptr = hptr->h_addr_list) != NULL) {
        printf("address: %s\n",
               inet_ntop(hptr->h_addrtype, *pptr, str,
                         sizeof(str)));
    } else {
        fprintf(stderr, "Error call inet_ntop \n");
    }

    sockfd = socket(AF_INET, SOCK_STREAM, 0);
    bzero(&servaddr, sizeof(servaddr));
    servaddr.sin_family = AF_INET;
    servaddr.sin_port = htons(80);
    inet_pton(AF_INET, str, &servaddr.sin_addr);

    connect(sockfd, (SA *) & servaddr, sizeof(servaddr));
    process_http(sockfd, hname, page, poststr);
    close(sockfd);
    exit(0);


}

请帮我解决这个问题,一步步使“我能理解它,给我的信息,并请,如果你可以”告诉我一个例子。 (这将有助于我和其他人)

Answer 1:

您收到的响应的第一部分是由HTTP版本,服务器响应状态代码和各种HTTP响应头。

HTTP / 1.1 200 OK日期:星期五,2012年4月20日10时19分12秒GMT服务器:Apache / 2.2.21(UNIX)的mod_ssl / 2.2.21的OpenSSL / 0.9.8r DAV / 2 PHP / 5.3.6 X-Powered-由:PHP / 5.3.6的Content-Length:12连接:关闭的Content-Type:text / html的

经过头遵循HTTP响应体(你需要提取):

你好,世界

:HTTP标头和主体与字符以下序列分开\r\n\r\n 。 因此,所有你需要做的是寻找并提取一切,是它背后。

你可以自己做(插座,解析...),但我的建议是使用一些HTTP库: WinInetWinHttp (都是微软的)或libCurl (开源)。



Answer 2:

响应报头位从一个空行的内容分开。

需要考虑到不同的行结束符。 基本上忽略\r秒。

因此,第一次读线,直到你得到一个空白的一个然后开始打印他们!

编辑

你有一个回应如下

HTTP/1.1 200 OK
Date: Fri, 20 Apr 2012 10:19:12 GMT
...
Content-Type: text/html

Hello World

请注意,有HTTP标头和(在这种情况下HTML)的响应之间的空行。



文章来源: Send Http “Post” Request To Php Code in C or C++