C ++ Telegram Bot POST-запрос на обновления безрезультатно - PullRequest
0 голосов
/ 27 апреля 2020

Я пытаюсь создать бот-телеграмму. Сначала я пытаюсь получить обновления от бота, как сказано в Telegram API с помощью метода / getUpdates. С Почтальоном запрос работает хорошо, и у меня есть все данные в формате json. При использовании cUrl у меня нет ответа, а res равно 0. Здесь есть фрагмент кода:

#include <iostream>
#include <curl/curl.h>
#include <string>

using namespace std;

static size_t WriteCallback(void *contents, size_t size, size_t nmemb, void *userp)
{
    ((std::string*)userp)->append((char*)contents, size * nmemb);
    return size * nmemb;
}


void getUpdates()
{
    std::string readBuffer;

    CURL *curl;
    CURLcode res;
    curl = curl_easy_init();
    if(curl) {
      curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "POST");
      curl_easy_setopt(curl, CURLOPT_URL, "http://api.telegram.org/BOTTOKEN/getUpdates");
      curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
      curl_easy_setopt(curl, CURLOPT_DEFAULT_PROTOCOL, "https");
      struct curl_slist *headers = NULL;
      curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0);
      curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0);
      curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
      curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, WriteCallback);
      curl_easy_setopt(curl, CURLOPT_WRITEDATA, &readBuffer);
      std::cout << "Buffer content"<<readBuffer << std::endl;
      long code = -1;
      curl_easy_getinfo( curl, CURLINFO_RESPONSE_CODE, &code );
      std::cout<<"HTTP Response Code: "<< code <<std::endl;
      std::cout<<"Res: "<<res<<std::endl;
      res = curl_easy_perform(curl);

    }
}

int main()
{
    getUpdates();
    return 0;
}

Содержимое буфера пустое, а res равно 0.

Не могли бы вы дать мне какие-нибудь подсказки? Спасибо!

1 Ответ

0 голосов
/ 28 апреля 2020

Я решил это! Здесь есть обновленный код:

void getUpdates()
{
    CURL *curl;
    CURLcode res;
    curl = curl_easy_init();
    if(curl) {
      curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
      curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "POST");
      curl_easy_setopt(curl, CURLOPT_URL, "http://api.telegram.org/botyourtoken/getUpdates");
      curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
      curl_easy_setopt(curl, CURLOPT_DEFAULT_PROTOCOL, "https");
      struct curl_slist *headers = NULL;
      curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
      curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0);
      curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, WriteCallback);
      std::string readBuffer;
      curl_easy_setopt(curl, CURLOPT_WRITEDATA, &readBuffer);
      res = curl_easy_perform(curl);
      std::cout << "Buffer content: "<<std::endl;
      std::cout<<readBuffer << std::endl;
    }
    curl_easy_cleanup(curl);
}

Спасибо!

...