ASP.Net del.icio.us API integration with C#

HttpWebRequest myReq = (HttpWebRequest)WebRequest.Create("https://api.del.icio.us/v1/posts/all");
myReq.Credentials = new NetworkCredential(username,password);//Both as strings
HttpWebResponse response = (HttpWebResponse)myReq.GetResponse();
myReq.UserAgent = "K-blog del.icio.us adder";//Optional
Stream receiveStream = response.GetResponseStream();
StreamReader readStream = new StreamReader (receiveStream, System.Text.Encoding.UTF8);
string deliciousResponse = readStream.ReadToEnd();
readStream.Close();
receiveStream.Close();
response.Close();
And now all my blog posts are linked on del.icio.us. There are a few problems linked with having to use the API sparingly (otherwise they start sending 503 headers back) so you can't post too much at once, but it works as well as it's going to.

