{"id":23012687,"url":"https://github.com/velddev/twitch","last_synced_at":"2026-02-15T19:32:54.143Z","repository":{"id":105383906,"uuid":"580699245","full_name":"velddev/Twitch","owner":"velddev","description":"A Wumpus-style, low-level implementation of the Twitch Apis.","archived":false,"fork":false,"pushed_at":"2019-03-22T21:47:34.000Z","size":122,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-09T05:15:18.655Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/velddev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-12-21T08:13:21.000Z","updated_at":"2023-01-24T21:44:34.000Z","dependencies_parsed_at":null,"dependency_job_id":"a9bcb3a7-d133-4f05-b940-5893ab788ce4","html_url":"https://github.com/velddev/Twitch","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/velddev/Twitch","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/velddev%2FTwitch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/velddev%2FTwitch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/velddev%2FTwitch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/velddev%2FTwitch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/velddev","download_url":"https://codeload.github.com/velddev/Twitch/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/velddev%2FTwitch/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29487454,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T19:29:10.908Z","status":"ssl_error","status_checked_at":"2026-02-15T19:29:10.419Z","response_time":118,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-15T10:18:49.239Z","updated_at":"2026-02-15T19:32:54.137Z","avatar_url":"https://github.com/velddev.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Discord](https://discordapp.com/api/guilds/257698577894080512/widget.png)](https://discord.gg/yd8x2wM) [![Build status](https://ci.appveyor.com/api/projects/status/8n9p8i48s7opmrdn?svg=true)](https://ci.appveyor.com/project/Aux/twitch) ![MyGet Version](https://img.shields.io/myget/akitaux/vpre/Akitaux.Twitch.Core.svg)\n\n# Twitch\n\nA [Wumpus-style](https://github.com/discord-net/Wumpus.Net), low-level implementation of the Twitch Apis.\n\n### Builds\n\nDevelopment builds of projects that are available for testing can be found by adding this feed to your nuget sources. \n\n`https://www.myget.org/F/akitaux/api/v3/index.json`\n\n\n### Samples\n\n##### Helix\nAuthentication and a basic request to get online streams.\n```csharp\nvar helix = new TwitchHelixClient\n{\n    Authorization = new AuthenticationHeaderValue(\"Bearer\", \"oauth token\")\n};\n\nvar response = await helix.GetStreamsAsync(new GetStreamsParams\n{\n    UserNames = new[] { (Utf8String)\"emongg\"), (Utf8String)\"timthetatman\" }\n});\n\nforeach (var stream in response.Data)\n    Console.WriteLine($\"{stream.UserName} is online! {stream.Title}\");\n```\n\n##### Chat\nJoining a channel and displaying messages in the console.\n```csharp\nvar chat = new TwitchChatClient();\n\nchat.Connected += () =\u003e\n{\n    chat.Send(new IrcMessage(IrcCommand.Nickname, \"justinfan42069\"));\n    chat.Send(new IrcMessage(IrcCommand.Password, \"justinfan42069\"));\n    chat.Send(new IrcMessage(IrcCommand.Join, \"#emongg\"));\n};\nchat.ReceivedPayload += (payload, n) =\u003e\n{\n    if (payload.Command == IrcCommand.Message)\n        Console.WriteLine(string.Join(\" \", payload.Parameters));\n};\n\nawait chat.RunAsync(\"wss://irc-ws.chat.twitch.tv:443\");\n```\n\n##### PubSub\nListening to a channel's subscriptions and displaying them in the console\n```csharp\nvar pubsub = new TwitchPubsubClient();\n\npubsub.Connected += () =\u003e\n{\n    pubsub.SendListenAsync(\n        new Topic(PubsubDispatchType.ChannelSubscriptionV1, 1234567),\n        \"oauth token\");\n};\npubsub.ChannelSubscriptionV1 += (sub) =\u003e\n{\n    Console.WriteLine($\"{sub.DisplayName} just subscribed to {sub.ChannelName} for {sub.CumulativeMonths} month(s)!\");\n};\n\nawait pubsub.RunAsync(\"wss://pubsub-edge.twitch.tv\");\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvelddev%2Ftwitch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvelddev%2Ftwitch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvelddev%2Ftwitch/lists"}