2011-08-16 73 views
28

如何使用Fiddler檢查來自Web服務器的響應。我可以通過將url粘貼到Request Builder中的字段來輕鬆檢查GET方法,並將響應返回到xml/json中。有一個選項POST,但是我不知道如何將參數傳遞給POST。使用Fiddler檢查POST請求

例如:

HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https://www.google.com/accounts/ClientLogin"); 
request.Method = "POST"; 

string postData = "accountType=HOSTED_OR_GOOGLE"; 
postData += "&[email protected]"; 
postData += "&Passwd=yourpassword"; 
postData += "&service=finance"; 
postData += "&source=test-test-.01"; 

我怎樣才能把我的數據到提琴手這個POST方法得到的迴應?

+1

這是一個關於WP7或關於Fiddler的問題?目前還不清楚你在問什麼。 –

+0

它確實是關於Fiddler:P,但我使用c#代碼來解釋我的參數。 :P –

回答

56

最簡單這樣做的方法是讓Fiddler捕獲此請求的實例並將該會話拖放到「請求」構建器上。

但是自己生成帖子並不難。設置RequestBuilder的方法POST,添加頁眉:

Content-Type: application/x-www-form-urlencoded

,放在請求體後的文本:

accountType=HOSTED_OR_GOOGLE&[email protected]&Passwd=yourpassword&service=finance&source=test-test-.01

+0

'Content-Type'做到了訣竅! – VSG24

0

Composer with Http Post, URL, Header and Body

And Result console.log at Server with Json

步驟1:使用Http Post,URL,Header和Body的作曲 步驟2:和結果console.log服務器與Json