Ruben Bermudez
Ruben Bermudez
Kudos @kryndis , that helped a lot. Steps I followed were similar to yours but I don't have an browser, I managed just to use CURL for it and worked:...
AccessHash is received with the [TLUser](https://github.com/rubenlagus/TelegramApi/blob/51713e9b6eb9e0ae0d4bbbe3d4deffff9b7f01e4/src/main/java/org/telegram/api/user/TLUser.java) that you get in your implementation of [IUserHandler](https://github.com/rubenlagus/TelegramApi/blob/51713e9b6eb9e0ae0d4bbbe3d4deffff9b7f01e4/src/main/java/org/telegram/bot/handlers/interfaces/IUsersHandler.java).
Hi, you should be able to get it checking sample project at https://github.com/rubenlagus/Deepthought, users are managed at https://github.com/rubenlagus/Deepthought/blob/master/Deepthought/src/main/java/org/telegram/plugins/echo/handlers/UsersHandler.java exactly
I don't use secret chats at all with this library, so I'm not implementing PFS. In addition, the library lacks part of the secret chats schema, so it makes no...
I thought you meant PFS in secret chats. I didn't implement PFS since it is a complex process and it is not in my needs at the moment, of course,...
No reason, I forgot to make it public I think. Will change it as soon as possible
There is a basic usecase at https://github.com/rubenlagus/deepthought
To send a message to an user, you'll need the userId and the userHash, second parameter is received with the user information. If you know the phone number, you can...
Thanks @monkeyboiii. If the change is backward compatible, I'll add it to the next version. Sounds like a good improvement
Adding the interface for those classes is not an actual problem (I can agree in adding them) but, in any case, you will still need to do a casting from...