0

電報ボットを構築しようとしていますが、問題は、新しい php 5.6 による php 関数の変更に関連しています。

以下は、私が見つけた基本的なコードで、php 5.6 の変更に対応しています。

      #$filePhoto = curl_file_create($filepath, 'image/jpg', 'heInternet');  //**LINE 39**
      $filePhoto = new CURLFile($filepath, 'image/jpg', 'heInternet');  //**LINE 40**
      //$texto = $_POST['msg'];
      $content = array(
          'chat_id' => "@BugTheInternet",
          'photo' => $filePhoto
      );

      //curl required to post
      $ch = curl_init();

      curl_setopt($ch, CURLOPT_URL, $url);
      curl_setopt($ch, CURLOPT_POST, true);
      curl_setopt($ch, CURLOPT_SAFE_UPLOAD, false); // required as of PHP 5.6.0
      curl_setopt($ch, CURLOPT_POSTFIELDS, $filePhoto);  //**LINE 53**
      curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: multipart/form-data'));
      curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);  //fix http://unitstep.net/blog/2009/05/05/using-curl-in-php-to-access-https-ssltls-protected-sites/

      // receive server response ...
      curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

      $server_output = curl_exec ($ch);

ここに私が得るエラーがあります:

非推奨: curl_setopt(): ファイルのアップロードに @filename API を使用することは非推奨です。C:\xampp where\somefile.php の 53 行目で、代わりに CURLFile クラスを使用してください。

53 行目で $content を $filePhoto に変更すると、実行され、Telegram サーバーが JSON でメッセージを送信します。サーバー応答:

"{"ok":false,"error_code":400,"description":"Error: Bad Request: there is no photo in request"}"

私は何時間もインターネットを検索し、解決策を見つけました。ところで、私が使用しているPHP 5.6に対して提案された2つの方法は、39行目と40行目です。

これに遭遇した場合、またはその他の場合は、私を助けてください。ありがとうございました。

4

3 に答える 3

0

この投稿から数年後、私はこれに1時間無駄にした後、どのようにそれを機能させたかを共有しています:

  function json($url, array $fields) {
    $ch = curl_init($url);
    $ok = 1;
    $ok &= curl_setopt($ch, CURLOPT_ENCODING, 'UTF-8');
    $ok &= curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
    $ok &= curl_setopt($ch, CURLOPT_AUTOREFERER, true);
    $ok &= curl_setopt($ch, CURLOPT_TIMEOUT, 120);
    $ok &= curl_setopt($ch, CURLOPT_HTTPHEADER, [
      "Accept: application/json"
    ]);
    $ok &= curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $ok &= curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
    $ok &= curl_setopt($ch, CURLOPT_HTTPHEADER, ["Content-Type:multipart/form-data"]);
    if ($ok !== 1) {
      user_error("curl_setopt failed");
    }

    $res = curl_exec($ch);
    if ($res === false) {
      var_dump($res);
      user_error(curl_error($ch));
    }
    $code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    curl_close($ch);

    if ($res === false) {
      user_error('curl_exec fail');
    }

    $json = json_decode($res, true);
    if (! is_array($json)) {
      print_r($res);
      user_error("http_json::failed decoding");
    }
    return $json;
}

$f = new \CurlFile("/path/to/file.jpg", 'image/jpeg', 'filename.jpg');

$args = [
  "photo" => $f,
  "chat_id" => $group,
  "caption" => "Hello world"
];
$url = "https://api.telegram.org/bot$token/sendPhoto";
var_dump( json($url, $args) );

これはPHP7上にあり、トリックは次の2つのようです:

  • Content-Type:マルチパート/フォームデータ
  • \CurlFile の使用
于 2020-01-04T10:39:46.403 に答える