Hardly.Library.Twitch.TwitchApi.GetJson C# (CSharp) Method

GetJson() static private method

static private GetJson ( TwitchBot bot, uint limit, uint offset, string path ) : string
bot TwitchBot
limit uint
offset uint
path string
return string
        static string GetJson(TwitchBot bot, uint limit, uint offset, string path)
        {
            return WebClient.GetHTML("https://api.twitch.tv/kraken/" + path + "&oauth_token=" + bot.oauthPassword + "&limit=" + limit
                + "&offset=" + offset);
        }