Fiddler 디버깅 프록시를 사용하고 있으며 아래 코드는 서버 (YouTube) 데이터를 가로 채고 HTML 정보가 클라이언트 (내 웹 브라우저)에 도달하기 전에 수정할 수 있습니다.
if (oSession.HostnameIs("www.youtube.com") && oSession.oResponse.headers.ExistsAndContains("Content-Type","text/html")){
oSession.utilDecodeResponse();
oSession.utilReplaceInResponse("old string","new string");
}
이제 http://www.youtube.com/results?search_query= & page = 3 dolphin
에서 단어를 바꾸거나 숨기려고합니다 . 어떻게하면 되나요?dolphin
고맙습니다