Telegram bot通过URL发送照片返回"错误请求:错误的文件标识符/ HTTP URL指定"

时间:2018-04-04 07:48:12

标签: telegram-bot

我在 Telegram bot 中通过网址发送照片。对于一些照片,我收到来自Telegram的错误:

{"ok":false,"error_code":400,"description":"Bad Request: wrong file identifier/HTTP URL specified"}

例如: 发送this照片有效:

https://api.telegram.org/bot<BOT_KEY>/sendPhoto?chat_id=<CHAT_ID>&photo=https%3A%2F%2Fdrscdn.500px.org%2Fphoto%2F153590277%2Fq%253D80_m%253D2000%2Fv2%3Fwebp%3Dtrue%26sig%3D8b429a27872dfdb4f68ddc5edd488ce9e6a57977415fa323178cd62c5100a3ff

但是this文件奇怪地无法工作:

https://api.telegram.org/bot<BOT_KEY>/sendPhoto?chat_id=<CHAT_ID>&photo=https%3A%2F%2Fdrscdn.500px.org%2Fphoto%2F247611167%2Fq%253D80_m%253D1500%2Fv2%3Fwebp%3Dtrue%26sig%3Dcfa117f225962250323c1202797abe8d45b47d59da12d780f4bf5231687c4331

请注意,对于这两个例子:

  • 网址有效
  • MIME类型似乎正常(两者都是jpg文件)
  • 文件大小小于10 MB

我做错了吗?或者对这个问题的任何想法?

谢谢,

2 个答案:

答案 0 :(得分:3)

可能的解决方案:

将具有随机值的无用属性添加到文件url,然后重试直到成功。

我也遇到了这个问题。我只是发现具有几乎相同的url的几乎相同的文件具有不同的行为。这让我震惊。我不认为这是我的文件错误,因此我通过添加无用的属性并调整其值来修改了文件url。重试了很多次后,它成功了!

您可以通过运行此代码段来尝试一下。唯一的区别是每个文件网址末尾的&random=58&random=64

<h5>Your Bot Token</h5>
<input id="token" type="text" style="width: 400px;" value="{YourBotToken}" />

<h3>200 OK Example</h3>
<form action="https://api.telegram.org/bot{YourBotToken}/sendPhoto" method="POST" enctype="application/x-www-form-urlencoded">
  <textarea type="text/html" name="photo" rows="4" cols="70" readonly="readonly">http://api.map.baidu.com/staticimage?center=140.50,36.15&width=1024&height=576&zoom=6&amp;copyright=1&markers=140.50,36.15&markerStyles=l&random=58</textarea>
  <input type="text" name="chat_id" value="@{YourChatID}" />
  <input type="submit" value="Submit" onclick="this.form.action='https://api.telegram.org/bot'+document.getElementById('token').value+'/sendPhoto';" />
</form>
<br><br>
<h3>400 Bad Request Example</h3>
<form action="https://api.telegram.org/bot{YourBotToken}/sendPhoto" method="POST" enctype="application/x-www-form-urlencoded">
  <textarea type="text/html" name="photo" rows="4" cols="70" readonly="readonly">http://api.map.baidu.com/staticimage?center=140.50,36.15&width=1024&height=576&zoom=6&amp;copyright=1&markers=140.50,36.15&markerStyles=l&random=64</textarea>
  <input type="text" name="chat_id" value="@{YourChatID}" />
  <input type="submit" value="Submit" onclick="this.form.action='https://api.telegram.org/bot'+document.getElementById('token').value+'/sendPhoto';" />
</form>

答案 1 :(得分:1)

我最近遇到了同样的问题。

API文档page说:

  

按网址发送
  ...
  其他配置可能有效但我们无法保证

这意味着如果您想100%确定,则应使用file_idmultipart/form-data发送照片。