我想从数据库中获取我的机器人消息并发送给用户,当我的文本只有1个单词时它起作用,但现在它不起作用并显示HTTP BAD REQUEST 400.我想我应该使用卷曲,但我没有发现任何文件对于从电报机器人发送长信息有用。(实际上因为我是初学者在php中)
这是我的代码
$botToken="something";
$website="https://api.telegram.org/bot".$botToken;
$update = file_get_contents("php://input");
$update = json_decode($update, true);
$chatID = $update["message"]["chat"]["id"];
$message = $update["message"]["text"];
define("dbhost", "localhost:3306"); define("dbuser", "sm");
define("dbpass", "sm"); define("database", "sm");
switch ($message){
case "/get":
connected($chatID);
break;
}
function sendMessage($chatID,$message){
$url =$GLOBALS[website]."/sendMessage?chat_id=".$chatID."&text=".$message;
//file_get_contents($url);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($ch);
curl_close($ch);
//checkJSON($chatID,$update);
}
function connected($chatID){
$conn = mysql_connect(dbhost,dbuser,dbpass);
if(! $conn )
{
die('Could not connect: ' . mysqli_error());
}
mysql_select_db( database );
$strSQL = "SELECT text FROM bott WHERE id= '1' ";
$result = mysql_query($strSQL) or die('SQL Error :: '.mysql_error());
$row = mysql_fetch_assoc($result);
$message=$row['text'];
sendMessage($chatID,$message);
mysql_close($conn);
}
function checkJSON($chatID,$update){
$myFile = "log.txt";
$updateArray = print_r($update,TRUE);
$fh = fopen($myFile, 'w') or die("can't open file");
fwrite($fh, $chatID ."\n\n");
fwrite($fh, $updateArray."\n\n");
fclose($fh);
}
?>
这是我使用file_get_contents
时的错误[08-Jul-2016 12:27:35 America/Chicago] PHP Warning: file_get_contents(https://api.telegram.org/bot218048829:AAF7baKISagQfALp4OIPh- yU_hMOnpFGU0A/sendMessage? chat_id=98506693&text=Introduction%0D%0AA+COMPUTER+PROCESSOR+such+as+Intel%92s+i486+used+to+cost+around+the+same+as+a+small+car.+Nowadays+a+chip+with+similar+power+is+the+price+of+a+chocolate+bar.%0D%0A): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request
in /home/sfduiir1/public_html/php.php on line 29
此代码不向用户发送任何内容。
答案 0 :(得分:9)
在curl方法中,您不应该使用url中的任何数据。 当你看到你的url获取错误时,空格无效。 这是一个有效的卷曲代码:
$website="https://api.telegram.org/bot".$botToken;
$chatId=1234567; //Receiver Chat Id
$params=[
'chat_id'=>$chatID,
'text'=>'MoonLight',
];
$ch = curl_init($website . '/sendMessage');
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, ($params));
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$result = curl_exec($ch);
curl_close($ch);