SendWhisper
Send a Twitch Whipser to another user.
There are Twich limitations you have to consider before using this method:
- The user sending the whisper must have a verified phone number.
- The API may silently drop whispers that it suspects of violating Twitch policies.
- Rate Limits: You may whisper to a maximum of 40 unique recipients per day. Within the per day limit, you may whisper a maximum of 3 whispers per second and a maximum of 100 whispers per minute.
Signature
public bool SendWhisper(string userName, string message, bool bot = true)
Parameters
userName
string required
No description provided.
message
string required
No description provided.
bot
bool
Default:
True
No description provided.
Return Type
bool
Example
CPH.SendWhisper(userName, message);
CPH.SendWhisper(userName, message, bot);