So I'm trying to build a mobile application that logs users in using telegram authentication API. They can register their channels in the app for inviting other users or they can join other users channels.
After searching for the best implementation, I came across MadelineProto Library As I'm using Laravel. I am going to use this library in the server side of my app to be able to use telegram API. I want to use my telegram account to get API ID and API HASH once and let other telegram users to log in to my app using their telegram account.
As you may have noticed, I won't need many features of the library like updates.
So, Is it a good idea to use this library for my app? or is there a better way?
By The Way, As you know, Telegram API is using Mtproto encryption Protocol and using it directly is almost impossible for me.