I want to get a random twitch streamer.
So I thought it would be easiest to parse "http://twitch.tv/directory/random" html but unfortunately these elements are hidden somewhere else.
What would be the best way to approach this in C#?
Hope you can help me, thanks!
EDIT: My main problem was that in the source html you cannot see what the name of the displayed streamers ont twitch.tv/directory/random are. So without being able to download the url I needed another way to get the data on this website. So what I was looking for was a C# way of web-scraping twitch.tv/directory/random to get the name of the top streamer in this category.
What you are trying to do is web scraping. Usually service providers do not appreciate that.
I have found this Twitch-API on github though which might help you to accomplish your goal. If you want to use the API with C# I would recommend RestSharp (also on nuget) for implementing the HTTP calls to the API.
After taking a quick look at the methods exposed by the API this one might prove helpful:
GET /search/channels
It returns a JSON object as follows:
{
"channels": [
{
"mature": false,
"status": "test status",
"broadcaster_language": "en",
"display_name": "test_channel",
"game": "StarCraft II: Heart of the Swarm",
"delay": 0,
"language": "en",
"_id": 12345,
"name": "test_channel",
"created_at": "2007-05-22T10:39:54Z",
"updated_at": "2015-02-12T04:15:49Z",
"logo": "http://static-cdn.jtvnw.net/jtv_user_pictures/test_channel-profile_image-94a42b3a13c31c02-300x300.jpeg",
"banner": "http://static-cdn.jtvnw.net/jtv_user_pictures/test_channel-channel_header_image-08dd874c17f39837-640x125.png",
"video_banner": "http://static-cdn.jtvnw.net/jtv_user_pictures/test_channel-channel_offline_image-b314c834d210dc1a-640x360.png",
"background": null,
"profile_banner": "http://static-cdn.jtvnw.net/jtv_user_pictures/test_channel-profile_banner-6936c61353e4aeed-480.png",
"profile_banner_background_color": "null",
"partner": true,
"url": "http://www.twitch.tv/test_channel",
"views": 49144894,
"followers": 215780,
"_links": {
"self": "https://api.twitch.tv/kraken/channels/test_channel",
"follows": "https://api.twitch.tv/kraken/channels/test_channel/follows",
"commercial": "https://api.twitch.tv/kraken/channels/test_channel/commercial",
"stream_key": "https://api.twitch.tv/kraken/channels/test_channel/stream_key",
"chat": "https://api.twitch.tv/kraken/chat/test_channel",
"features": "https://api.twitch.tv/kraken/channels/test_channel/features",
"subscriptions": "https://api.twitch.tv/kraken/channels/test_channel/subscriptions",
"editors": "https://api.twitch.tv/kraken/channels/test_channel/editors",
"teams": "https://api.twitch.tv/kraken/channels/test_channel/teams",
"videos": "https://api.twitch.tv/kraken/channels/test_channel/videos"
}
},
],
"_total": 42679,
"_links": {
"self": "https://api.twitch.tv/kraken/search/channels?limit=10&offset=0&q=starcraft",
"next": "https://api.twitch.tv/kraken/search/channels?limit=10&offset=10&q=starcraft"
}
}
Now with the use of json2csharp we can turn this into a class hierarchy:
public class Links
{
public string self { get; set; }
public string follows { get; set; }
public string commercial { get; set; }
public string stream_key { get; set; }
public string chat { get; set; }
public string features { get; set; }
public string subscriptions { get; set; }
public string editors { get; set; }
public string teams { get; set; }
public string videos { get; set; }
}
public class Channel
{
public bool mature { get; set; }
public string status { get; set; }
public string broadcaster_language { get; set; }
public string display_name { get; set; }
public string game { get; set; }
public int delay { get; set; }
public string language { get; set; }
public int _id { get; set; }
public string name { get; set; }
public string created_at { get; set; }
public string updated_at { get; set; }
public string logo { get; set; }
public string banner { get; set; }
public string video_banner { get; set; }
public object background { get; set; }
public string profile_banner { get; set; }
public string profile_banner_background_color { get; set; }
public bool partner { get; set; }
public string url { get; set; }
public int views { get; set; }
public int followers { get; set; }
public Links _links { get; set; }
}
public class Links2
{
public string self { get; set; }
public string next { get; set; }
}
public class Channels
{
public List<Channel> channels { get; set; }
public int _total { get; set; }
public Links2 _links { get; set; }
}
After installing RestSharp and Json.NET a call to that particular endpoint could look like this:
public class TwitchSampleImplementation
{
private IList<RestResponseCookie> _cookies;
public void AuthenticateAndGetChannels()
{
// this is where your login credentials go which can be acquired here
// => https://github.com/justintv/Twitch-API/blob/master/authentication.md#developer-setup
Authenticate("yourClientId", "thatUrl", null, "thatState");
var channels = GetChannel("popularChannel");
Console.WriteLine(String.Format("Channels: ", channels.channels.Select(c =>
c.display_name).Aggregate("", (a, b) => a + b + ",").TrimEnd(',')));
}
public void Authenticate(string clientId,
string registeredRedirectURI, List<string> scopes, string state)
{
// reference: https://github.com/justintv/Twitch-API/blob/master/authentication.md
var login = Tuple.Create("client_id", clientId);
var redirectURI = Tuple.Create("redirect_uri", registeredRedirectURI);
var theScope = Tuple.Create("scope", scopes.Aggregate("", (a, b) => a + b + ",").TrimEnd(','));
var theState = Tuple.Create("state", state);
// reference: baseUrl => https://github.com/justintv/Twitch-API#formats
var client = new RestClient("https://api.twitch.tv/kraken/");
var request = new RestRequest("oauth2/authorize", Method.POST); // try Method.GET if that doesn't work
var type = ParameterType.GetOrPost;
var paramList = new List<Parameter>()
{
new Parameter {Name = login.Item1, Value = login.Item2, Type = type},
new Parameter {Name = redirectURI.Item1, Value = redirectURI.Item2, Type = type},
new Parameter {Name = theScope.Item1, Value = theScope.Item2, Type = type},
new Parameter {Name = theState.Item1, Value = theState.Item2, Type = type}
};
paramList.ForEach(p => request.AddParameter(p));
// reference: https://github.com/justintv/Twitch-API#api-versions-and-mime-types
request.RequestFormat = DataFormat.Json;
var response = client.Execute(request);
if (response.StatusCode == System.Net.HttpStatusCode.OK)
{
_cookies = _cookies ?? new List<RestResponseCookie>();
response.Cookies.ToList().ForEach(c => _cookies.Add(c));
}
else
{
handleException(response);
}
}
public Channels GetChannel(string searchTerm)
{
var client = new RestClient(@"https://api.twitch.tv/kraken");
// reference: https://github.com/justintv/Twitch-API/blob/master/v3_resources/search.md#get-searchchannels
// reference: http://restsharp.org/
var request = new RestRequest(String.Format(@"search/channels?q={0}", searchTerm));
_cookies.ToList().ForEach(c => request.AddCookie(c.Name, c.Value));
var response = client.Execute(request);
if (response.StatusCode == System.Net.HttpStatusCode.OK)
{
return JsonConvert.DeserializeObject<Channels>(response.Content);
}
handleException(response);
return null;
}
private void handleException(IRestResponse response)
{
throw new HttpRequestException(String.Format("Exception '{0}' with status code '{1}' occurred.",
response.Content, Enum.GetName(typeof(HttpStatusCode), response.StatusCode)));
}
}
I haven't tried calling that code but It should give you something to work off.
Otherwise doing a google search for twitch scrapers might also produce the desired results. Happy hunting and good luck. Hope this helps. ;)