Layer 220
PhoneGetGroupCallStreamChannels
Get info about RTMP streams in a group call or livestream. This method should be invoked to the same group/channel-related DC used for downloading livestream chunks. As usual, the media DC is preferred, if available.
method
Users
phone.getGroupCallStreamChannels#1ab21940 call:InputGroupCall = phone.GroupCallStreamChannels;
Parameters
| Name | Type | Description |
|---|---|---|
| Call | InputGroupCall | Group call or livestream |
Returns
phone.GroupCallStreamChannelsPossible Errors
| Code | Type | Description |
|---|---|---|
| 400 | GROUPCALL_INVALID | The specified group call is invalid. |
| 400 | GROUPCALL_JOIN_MISSING | You haven't joined this group call. |
Gogram Example
// PhoneGetGroupCallStreamChannels - positional arguments result, err := client.PhoneGetGroupCallStreamChannels(&tg.InputGroupCall{}) if err != nil { // handle error } // result is *tg.PhoneGroupCallStreamChannels