api.searchSecretMessages()
Searches for messages in secret chats. Returns the results in reverse chronological order. For optimal performance, the number of returned messages is chosen by TDLib
Parameters
SearchSecretMessagesParams
:chevron_leftchevron_right
Parameters
Interface
Name | Type | Description |
---|---|---|
chatId | number | Identifier of the chat in which to search. Specify 0 to search in all secret chats |
query | string | Query to search for. If empty, searchChatMessages must be used instead |
offset | string | Offset of the first entry to return as received from the previous request; use empty string to get first chunk of results |
limit | number | The maximum number of messages to be returned; up to 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit |
filter | Additional filter for messages to search; pass null to search for all messages |
Returns
ApiResponse
interface:interface ApiResponse {
_: 'searchSecretMessages' | 'error'
airgram: Airgram
request: {
method: 'searchSecretMessages'
params: SearchSecretMessagesParams
}
response: |
setState: (nextState: Record<string, unknown>) => void
getState: () => Record<string, unknown>
}