View Source ExGram.File (ex_gram v0.52.2)

Helpers when dealing with telegram files

Summary

Functions

Generate the full file URL ready to be downloaded, usage

Functions

Link to this function

file_url(file, ops \\ [])

View Source
@spec file_url(
  ExGram.Model.File.t(),
  keyword()
) :: String.t()

Generate the full file URL ready to be downloaded, usage:

First, you need to extract the File with ExGram.get_file(file_id)

Then:

ExGram.File.file_url(file)

You can pass the usual :bot and :token params:

ExGram.File.file_url(file, bot: :my_bot) ExGram.File.file_url(file, token: "MyBotToken")