danog / MadelineProto

Async PHP client API for the telegram MTProto protocol
https://docs.madelineproto.xyz
GNU Affero General Public License v3.0
2.74k stars 617 forks source link

How to get the story content? #1468

Closed mohhamedion closed 5 months ago

mohhamedion commented 5 months ago

How to get story content after getting them with

$MadelineProto->stories->getAllStories();

Now, all what can i see is the thumbnails represented in base64

is there anyway to download the actual stories?

danog commented 5 months ago

The thumbnails are not in base64, they're represented as normal JPG payloads, they're base64-encoded only if you json_encode the result.

See https://docs.madelineproto.xyz/docs/FILES.html for more info on how to work with files.