我几乎敢问,但是如何得到一个URL的响应数据?
我不记得了.
我不记得了.
我的场景:我使用twitter api来获取用户的个人资料图片.该api url返回jpg位置.
所以如果我实际上在我的意见中写这个HTML:
<img src="https://api.twitter.com/1/users/profile_image?screen_name=twitterapi&size=bigger"/>
浏览器自动使用src popertie的响应jpg.喜欢这个:
现在是我的问题很简单:我怎么可以得到那个.jpg位置在C#放入我的数据库?
解决方法
我不确定你在问什么
我想你可以在c#中使用WebClient.DownloadData来调用该URL.下载文件后,您可以将其放在数据库中.
byte[] response = new System.Net.WebClient().DownloadData(url);
Download a file over HTTP into a byte array in C#?
编辑:这是为我工作
WebRequest request = WebRequest.Create("https://api.twitter.com/1/users/profile_image?screen_name=twitterapi&size=bigger"); WebResponse response = request.GetResponse(); Console.WriteLine(response.ResponseUri); Console.Read( );
从A way to figure out redirection URL
编辑:这是另一种方法我想…使用show.json从Read the absolute redirected SRC attribute URL for an image
http://api.twitter.com/1/users/show.json?screen_name=twitterapi