503服务暂时不可用

时间:2018-11-21 08:34:39

标签: c sockets raspberry-pi raspbian

我需要在具有Raspbian的Raspberry PI 0上使用简单的HTTP客户端。我使用了一些示例代码,但是当我发送大约7个请求时,我只能下载出现此错误的页面: 503服务暂时不可用 没有可用的fastcgi流程来满足您的要求。

使用的代码之一:

ET

主要是这样:

#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

ssize_t process_http(int sockfd, char *host, char *page)
{
    ssize_t n;
      snprintf(sendline, MAXSUB,
                 "GET %s\r\n"
                 "Host: %s\r\n"
                 "Connection: close\n"
                "\n", page, host);

        write(sockfd, sendline, strlen(sendline));

        while ((n = read(sockfd, recvline, MAXLINE)) > 0)
         {
    recvline[n] = '\0';
    }
        printf("%s", recvline);


        return n;
}

在此示例中,我下载了json,但是当我阅读php或txt时,我遇到了同样的问题。我尝试了使用套接字的其他示例代码,例如happyhttp库,在7个请求之后,所有代码都给了我相同的结果。我认为它不会关闭连接。我需要发送http请求并接收数据,并且需要在数分钟内完成几次。

感谢所有想法。

1 个答案:

答案 0 :(得分:0)

您向GET字段提供完整的URI:

char *page = "http://plankter.cz/iot/list.json";
...
snprintf(sendline, MAXSUB,
            "GET %s\r\n"
            "Host: %s\r\n"
            "Connection: close\n"
            "\n", page, host);

您不应包含协议和主机名。

尝试以下方法:

char *page = "/iot/list.json";