├── .gitignore ├── LICENSE ├── README.md └── TwitchAuthExample ├── Config.cs ├── Models └── Authorization.cs ├── Program.cs ├── TwitchAuthExample.csproj ├── TwitchAuthExample.sln └── WebServer.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftyspiffy/Twitch-Auth-Example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftyspiffy/Twitch-Auth-Example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftyspiffy/Twitch-Auth-Example/HEAD/README.md -------------------------------------------------------------------------------- /TwitchAuthExample/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftyspiffy/Twitch-Auth-Example/HEAD/TwitchAuthExample/Config.cs -------------------------------------------------------------------------------- /TwitchAuthExample/Models/Authorization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftyspiffy/Twitch-Auth-Example/HEAD/TwitchAuthExample/Models/Authorization.cs -------------------------------------------------------------------------------- /TwitchAuthExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftyspiffy/Twitch-Auth-Example/HEAD/TwitchAuthExample/Program.cs -------------------------------------------------------------------------------- /TwitchAuthExample/TwitchAuthExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftyspiffy/Twitch-Auth-Example/HEAD/TwitchAuthExample/TwitchAuthExample.csproj -------------------------------------------------------------------------------- /TwitchAuthExample/TwitchAuthExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftyspiffy/Twitch-Auth-Example/HEAD/TwitchAuthExample/TwitchAuthExample.sln -------------------------------------------------------------------------------- /TwitchAuthExample/WebServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftyspiffy/Twitch-Auth-Example/HEAD/TwitchAuthExample/WebServer.cs --------------------------------------------------------------------------------