我正在尝试制作Telegram Bot,它需要将证书文件上传到它的服务器(参见enter link description here)。
目标网址是这样的:
“https://api.telegram.org/bot / setWebhook URL =某处/上/ the.web&安培;证书= 'certFile.cer'”
我需要在php文件中指定两个参数。 1-网址 2-应该上传的文件。 现在因为我是php的新手,我不知道如何将文件作为参数发送。 我尝试用这样的html表单来做到这一点:
<form action="https://api.telegram.org/bot########:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/setWebhook" method="post" enctype="multipart/form-data">
<input type="url" name="url" value="https://XXXXX.com/send.php"/><br/>
<input type="file" name="certificate" /><br/>
<input type="submit" name="btn" /><br/>
</form>
但它不起作用。 任何建议将不胜感激。