MadelineProtoDocs/docs/API_docs/constructors/inputMediaPhotoExternal.md

927 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
ttl_seconds int Optional Self-destruct time to live of photo

Type: InputMedia

Example:

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

Or, if you're into Lua:

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