2
我正在使用Fiddler
。如何獲取C#中的HTTP Post數據 - FiddlerCore?
當我捕獲請求時,它是一個Fiddler.Session
對象。
我一直在尋找這個對象現在幾個小時,我找不到Request Payload
。
我已搜遍所有屬性,也許我跳過一些東西,但我找不到它。我搜索了更多RequestBody
和RequestHeaders
沒有成功。
本網站介紹有關Fiddler
功能:
https://weblog.west-wind.com/posts/2014/jul/29/using-fiddlercore-to-capture-http-requests-with-net
因此,舉例來說,我想做到以下幾點:
private void FiddlerApplication_AfterSessionComplete(Session sess)
{
string payload = sess.??? //Where the property would be the POST data
}
是否有可能它只是不存在?