問題タブ [charles-proxy]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
java - Charles Proxy を使用して tomcat サービスを監視する
Charles Proxy を使用して tomcat サービスのトラフィックを監視しています。ドキュメントを読んだ後、catalina.bat に次の行を追加します。
set JAVA_OPTS=%JAVA_OPTS% -agentpath:C:\yjpagent.dll -Dhttps.proxyHost=127.0.0.1 -Dhttps.proxyPort=8888 -Dhttp.proxyHost=127.0.0.1 -Dhttp.proxyPort=8888
ただし、Charles Proxy は、サービスの実行時に何も表示しません。
どうすればいいですか?
前もって感謝します。
proxy - チャールズプロキシはコードをヘッドタグに追加します
一部の機能の単体テストにcharlesプロキシを使用しています。style.css ファイルをサイトに追加したかったのです。
私はこの書き換えルールを使用しています。カスタム CSS を Web ページの head セクションに追加したいと考えていました。
誰でもこれについて知っていますか。チャールズ プロキシを使用してカスタム コードを Web ページに挿入する方法。
json - Charlesproxy または Fiddler でページの一部の http ログをキャプチャできませんか?
以下のこのページのリンクで、検索リストに読み込まれるデータを確認しようとしています。
http://www.tigerdirectwireless.com/ecommerce/phones/?r=tigerdirect&filterbycarrier=68
ページソースに製品の詳細(名前、価格など)が見つかりませんでした。CharlesとFiddlerの両方で調査しましたが、このデータの http 要求または応答のログを表示できません。
完全なWebページを保存した後でも、リスト製品の詳細はダウンロードされず、HTTrack Website Copierもこれを特定するのに役立ちます.
実際には、この応答データがテキスト/マークアップ形式で生成されている場所からのリンクを知りたいのです。
みんなありがとう。
perl - Perl UserAgent を使用した HTTPS リクエスト
Perl を使用して HTTPS 認証で html ドキュメントをリクエストしようとしています。過去に HTTPS 以外のコードで問題が発生したことはありません。私は現在 LWP::UserAgent を使用しています:
印刷される応答は、基本的に「401 Unauthorized」ページです。ブラウザ経由でログインできました。ブラウザは、「認証が必要です -- サーバー xyz.url.com:80 にはユーザー名とパスワードが必要です」というポップアップが表示されます。Crypt::SSLeay
サーバーは次のように述べていますLWP::Protocol::https
。これらがインストールされています。私は困惑しています。
また、Charles というプログラムをダウンロードして、要求/応答に注意すべき点があるかどうかを確認しましたが、どこを見ればよいかわかりません。レルムに「Blah Blah」を追加しようとしましたが、うまくいきませんでした。チャールズを使用してレルムを識別できますか?
node.js - Redirect an http request from a remote server to a local server using nodejs
There is a feature in a tool called charles that allows you to map remote requests:
http://www.charlesproxy.com/documentation/tools/map-remote/
Basically, it can take any request to a server(even if you're not the one running it) and then makes a new request to another server, preserving the path and the query string. The response from the second server then overwrites the response from the first server.
I just want to know if there is a node module that can do this. I tried using http-proxy, but I have a feeling this map remote tool is a bit different than a proxy, since it seems like you must own both servers with a proxy.
EDIT: Tried using the http-proxy node module again, but can't seem to get it to work. Here's my code:
My expectation is that when I go to www.stackoverflow.com or www.stackoverflow.com:80, it will instead redirect to my localhost:9000
android - Charles プロキシを使用して googleapis.com を復号化する
Google Play サービスを利用するアプリを作成しています。すべてのデータが googleapis.com に送信されることを確認したいと思います。Charles ツールを使用して、SSL プロキシを使用してデータを傍受しています。しかし、何らかの理由で、www.googleapis.com、android.googleapis.com では機能しないようです。ただし、上記以外のドメインについては、プレーン テキスト データを正常に表示できました。したがって、Charles で SSL プロキシが正しく構成されていることはわかっています。このリンクをたどってセットアップしました:こちら
これまでに機能した人はいますか?