stories.searchPosts
Layer 225
Constructor ID: 0xd1810907
Returns: FoundStories
Parameters
| Name | Type | Description |
|---|---|---|
hashtag | string (flags.0, optional) | |
area | MediaArea (flags.1, optional) | |
peer | InputPeer (flags.2, optional) | |
offset | string | |
limit | int32 |
Example
go
result, err := client.Raw(&tg.SearchPostsRequest{
hashtag: "",
area: nil, // MediaArea
peer: nil, // InputPeer
offset: "",
limit: 0,
})
if err != nil {
panic(err)
}
print(result)