Reputation: 81
How can I get messages from Telegram channel if I'm not admin there? I just watched out official documentation and didn't find any method that can help me. Can I do it somehow?
Looking for PHP solution (desirable).
Upvotes: 5
Views: 3716
Reputation: 4298
The official way is to create a telegram bot and interact in php through the bot API.
In the case you want to listen to channel updates without being administrator (which is not officially supported by telegram at the moment), an alternative is to use unofficial libraries such as https://github.com/danog/MadelineProto
Upvotes: 3