MadelineProtoDocs/old_docs/API_docs_v71/constructors/inputMediaPhotoExternal.md

1021 B

title description image
inputMediaPhotoExternal New photo that will be uploaded by the server using the specified URL https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: inputMediaPhotoExternal

Back to constructors index

New photo that will be uploaded by the server using the specified URL

Attributes:

Name Type Required Description
url string Yes URL of the photo
caption string Yes Caption
ttl_seconds int Optional Self-destruct time to live of photo

Type: InputMedia

Example:

$inputMediaPhotoExternal = ['_' => 'inputMediaPhotoExternal', 'url' => 'string', 'caption' => 'string', 'ttl_seconds' => int];

Or, if you're into Lua:

inputMediaPhotoExternal={_='inputMediaPhotoExternal', url='string', caption='string', ttl_seconds=int}