<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Comment Feed for Channel 9 - Consuming the Stack Exchange API with C#</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/coding4fun/blog/Consuming-the-Stack-Exchange-API-with-C/RSS"></atom:link>
	<image>
		<url>http://files.channel9.msdn.com/thumbnail/7197c745-1946-46b2-a4e9-0ff8c14546af.png</url>
		<title>Channel 9 - Consuming the Stack Exchange API with C#</title>
		<link></link>
	</image>
	<description>Need I say anything about the awesome that is Stack Overflow? Okay, maybe adding a walk-through of consuming its API with C# needs to be said... Stack Exchange API Two weeks ago I was playing around with the Stack Exchange API to see if it was easy to build a custom flair application. You know, this little guy:  How hard can it be to retrieve a user’s profile, badge count and reputation updates? Surely, Stack Exchange has an API. And they do…and it’s pretty easy to use. Let’s quickly cobble together a small sample application. Table Of Contents Introduction API Usage User Profile Sending Requests Reputation Changes The post goes into some nice depth; from getting into the API; API Usage You can find the documentation for the Stack Exchange API here: http://api.stackoverflow.com/ At the time of writing the latest release is v1.1, but a draft specification for version 2.0 has just been released. What do you need to know about the API? It’s read-only All API responses are JSON All responses are GZIP’d API usage is throttled by IP address To the tools/libraries you&#39;ll need; So what do we need to be able to use the API? It talks JSON? Fire up NuGet and get the popular Json.NET library. We’ll need to issue requests. Let’s keep it simple and use the HttpWebRequest class All responses are GZIP’d? Luckily the .NET framework provides us with the GZipStream class. To writing code...   And in the end, some output;  BTW, to download the full sample, head over to his download page;    So if you&#39;re interested in the Stack Overflow/Stack Exchange API, or just consuming a web service API that uses JSON, this project is waiting for you... </description>
	<link></link>
	<language>en</language>
	<pubDate>Wed, 22 May 2013 13:04:42 GMT</pubDate>
	<lastBuildDate>Wed, 22 May 2013 13:04:42 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Consuming the Stack Exchange API with C#</title>
		<description>
			<![CDATA[<p>Nice one</p><p>posted by TanvirHussain</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/blog/Consuming-the-Stack-Exchange-API-with-C#c634546271897450205</link>
		<pubDate>Wed, 19 Oct 2011 13:19:49 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/blog/Consuming-the-Stack-Exchange-API-with-C#c634546271897450205</guid>
		<dc:creator>TanvirHussain</dc:creator>
	</item>
	<item>
		<title>Re: Consuming the Stack Exchange API with C#</title>
		<description>
			<![CDATA[<p>Thanks Greg. Nice summary.</p><p>Regards,</p><p>Christophe</p><p>posted by cgeers</p>]]>
		</description>
		<link>http://channel9.msdn.com/coding4fun/blog/Consuming-the-Stack-Exchange-API-with-C#c634547308552018794</link>
		<pubDate>Thu, 20 Oct 2011 18:07:35 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/coding4fun/blog/Consuming-the-Stack-Exchange-API-with-C#c634547308552018794</guid>
		<dc:creator>cgeers</dc:creator>
	</item>
</channel>
</rss>