GMAIL rss看不到标签说明。如何查看我的iis 5网站的Request标头

时间:2020-12-13 04:54:16

217.76.185.140/18.rss asp.net server If i add to webclip (gmail) rss http://www.brainyquote.com/link/quotebr.rss it works fine (See up of the inbox there are rss feed) But my own rss feed don't see description tag. 1.I want copy request header (that send gmail to my iis server) HTTP 101. etc content-type

217.76.185.140/18.rss asp.net服务器如果我添加到webclip(gmail)rss http://www.brainyquote.com/link/quotebr.rss它工作正常(查看收件箱有rss feed)但是我自己的RSS Feed看不到描述标签。 1.我想要复制请求标题(将gmail发送到我的iis服务器)HTTP 101等内容类型

2.Than i want copy it and send this httrrequest with fiddler to http://www.brainyquote.com/link/quotebr.rss 3.Than i will saw http response from quotebr.rss 4. I copy this resopnse and replace description,title etc to my own

2.我想复制它并将这个httrrequest与fiddler一起发送到http://www.brainyquote.com/link/quotebr.rss 3.我会看到来自quotebr.rss的http响应4.我复制这个resopnse并替换描述,标题等对我自己

1.I want to know how i can safe(log, trace request to iis 5 windows xp) fiddler don't saw it 2. How to see request from gmail to my site 3.Do y have rss samle,wich work in gmail?

1.我想知道我如何安全(登录,跟踪请求到iis 5 windows xp)fiddler没有看到它2.如何查看从gmail到我的网站的请求3.你有rss samle,在gmail工作?

1 个解决方案

#1


Fiddler won't see GMail's request for the feed, as the request will go directly from GMail server to your server, without ever touching the client computer. You'll have to log the request at your server.

Fiddler不会看到GMail对Feed的请求,因为请求将直接从GMail服务器发送到您的服务器,而不会触及客户端计算机。您必须在服务器上记录请求。

[your computer]-------[gmail.com]------[your server w/ RSS feed]
  1. your computer requests a page from gmail
  2. 您的计算机从Gmail请求页面

  3. gmail requests a page from your server (on completely different connection)
  4. gmail从您的服务器请求一个页面(在完全不同的连接上)

  5. your server returns a response to gmail
  6. 您的服务器返回对gmail的响应

  7. gmail assembles the response into its own response
  8. gmail将响应汇编到自己的响应中

  9. gmail returns the response to your computer
  10. gmail会将响应返回给您的计算机

In Fiddler, you can only see steps 1 and 5, as they generate traffic between your computer and some other computer on the Net.

在Fiddler中,您只能看到步骤1和5,因为它们会在您的计算机和网络上的其他计算机之间产生流量。

#1


Fiddler won't see GMail's request for the feed, as the request will go directly from GMail server to your server, without ever touching the client computer. You'll have to log the request at your server.

Fiddler不会看到GMail对Feed的请求,因为请求将直接从GMail服务器发送到您的服务器,而不会触及客户端计算机。您必须在服务器上记录请求。

[your computer]-------[gmail.com]------[your server w/ RSS feed]
  1. your computer requests a page from gmail
  2. 您的计算机从Gmail请求页面

  3. gmail requests a page from your server (on completely different connection)
  4. gmail从您的服务器请求一个页面(在完全不同的连接上)

  5. your server returns a response to gmail
  6. 您的服务器返回对gmail的响应

  7. gmail assembles the response into its own response
  8. gmail将响应汇编到自己的响应中

  9. gmail returns the response to your computer
  10. gmail会将响应返回给您的计算机

In Fiddler, you can only see steps 1 and 5, as they generate traffic between your computer and some other computer on the Net.

在Fiddler中,您只能看到步骤1和5,因为它们会在您的计算机和网络上的其他计算机之间产生流量。