[当有人访问我的页面/tg/index.php时,我想使用php guzzle向我发送消息。我知道如何用php curl发送。但是我想用php guzzles发送。我可以使用php guzzles向自己发送消息吗?请与我分享代码
您可以使用GuzzleHttp\Client
对象在Guzzle中发送请求。这是结合使用Guzzle documentation和Telegram Bot API文档的示例:
$client = new GuzzleHttp\Client([ base_uri => "https://api.telegram.org/bot" . $token ]);
$client->request("POST", "sendMessage", [ 'body' => $messageParams ]);
((假设您在$token
处具有bot令牌,并且$messageParams
对象是表示您要发送的消息的JSON对象。
我建议您找出how you can make a request to the API specifically和how you can achieve that with Guzzle。