摘要: 新浪微博中,为了节省输入字数,通过短网址对发布微博中链接进行重定向。我们可以通过代码实现对短网址进行还原,代码如下: private string GetOrignalLink(string link) { using (WebClient client = new MyWebClient()) { client.Headers.Add("Referer", link); Stream stream = null; try ... 阅读全文
posted @ 2013-07-24 09:46 悟远 阅读(692) 评论(0) 推荐(1) 编辑