anyproxy Request info window in web ui not showing when record clicked

vojdkbi0  于 2023-03-19  发布在  其他
关注(0)|答案(3)|浏览(84)

How to see record details in web interface? When i clicking a record row, nothing happens! Have tried different browsers, but nothing helped.

0s0u357o

0s0u357o1#

Ok, got news here, im trying to run anyproxy as module from my script, and no request info in webui appears, but when im running anyproxy from bin directory: node node_modules\anyproxy\bin\anyproxy --port 8888 request info window appears when clicking on the records. How to enable this when anyproxy used as a module?
Here is how im running it

const AnyProxy = require('anyproxy');
const options = {
  port: 8888,
  rule: require('./rule_1.js'),
  webInterface: {
    enable: true,
    webPort: 8002,
    wsPort: 8003,
  },
  throttle: 10000,
  forceProxyHttps: false,
  silent: false
};
const proxyServer = new AnyProxy.ProxyServer(options);

proxyServer.on('ready', () => { /* */ });
proxyServer.on('error', (e) => { /* */ });
proxyServer.start();

//when finished
proxyServer.close();
x7rlezfr

x7rlezfr2#

Having this same issue

rjee0c15

rjee0c153#

Hi @justiceandy
Can you update a detail info about the issue, such as the OS and AnyProxy version?
And, are you having the issue with record detail too? If yes , does the record list itself updating in the web ui?

相关问题