Layer 224
method Users
stats.getStoryPublicForwards#a6437ef6 peer:InputPeer id:int offset:string limit:int = stats.PublicForwards;

Parameters

Name Type Description
Peer InputPeer Peer where the story was originally posted
Id int Story ID
Offset string Offset for pagination, from stats. Public Forwards. next_offset.
Limit int Maximum number of results to return, see pagination

Gogram Example

// StatsGetStoryPublicForwards - positional arguments
result, err := client.StatsGetStoryPublicForwards(&tg.InputPeerUser{UserID: int64(777000)}, 42, "Hello, World!", 42)
if err != nil {
    // handle error
}
// result is *tg.StatsPublicForwards

Possible Errors

Code Type Description
400 PEER_ID_INVALID The provided peer id is invalid.