You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 27, 2022. It is now read-only.
It is defined in the .files/schema.txt as follows: messages.getDialogs#6b47f94d offset_date:int offset_id:int offset_peer:InputPeer limit:int = messages.Dialogs;
And on the telegram API doc: messages.getDialogs#eccf1df6 offset:int max_id:int limit:int = messages.Dialogs;
Seems like offset_date and offset_peer disappeared while offset_id changed name to max_id.
I'm trying to call this method from telegramApi.invokeAPI but i always get the: Invalid object for type InputPeer at telegramApi.js:2032
It is defined in the .files/schema.txt as follows:
messages.getDialogs#6b47f94d offset_date:int offset_id:int offset_peer:InputPeer limit:int = messages.Dialogs;And on the telegram API doc:
messages.getDialogs#eccf1df6 offset:int max_id:int limit:int = messages.Dialogs;Seems like offset_date and offset_peer disappeared while offset_id changed name to max_id.
I'm trying to call this method from telegramApi.invokeAPI but i always get the:
Invalid object for type InputPeer at telegramApi.js:2032Do you think that this could be the cause?
Thanks