如何使用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方法得到的迴應?
這是一個關於WP7或關於Fiddler的問題?目前還不清楚你在問什麼。 –
它確實是關於Fiddler:P,但我使用c#代碼來解釋我的參數。 :P –