我用来从电报下载文件的方法

时间:2016-01-06 09:23:41

标签: php telegram-bot

我正在尝试从电报下载照片但是,我根据电报得到了file_id& getfile但我没有file_id

有些时候,我根据该文件ID提交归档我从路径下载文件获取文件路径,但有时我得到照片的文档ID,我完全糊涂,我使用文件ID或文档ID的方法,任何人都可以解决我的问题。

$id = $result['result']['photo']['file_id'];
//getting file id 
$url = 'https://api.telegram.org/bot'. $bot_id .'/getFile?file_id='.$id;
$result = file_get_contents($url);
$result = json_decode($result, true);
//getting path of file
$path = $result['result']['file_path'];
$telemsg = $path;

0 个答案:

没有答案