Using in-url basic authentication in firefox

2019-04-30 07:32发布

I'm using launching firefox from the command line in a script to get snapshots of pages. These pages have basic http authentication. When using:

firefox http://user:pass@url.com

Either a dialog appears, or authentication doesn't work at all.

Is there any option to make firefox open the page without showing the dialog?

标签: http firefox
2条回答
劳资没心,怎么记你
2楼-- · 2019-04-30 08:15

Open about:config page in firefox. Create a new Integer key (right-click->New->Integer): network.http.phishy-userpass-length with value 255.

查看更多
男人必须洒脱
3楼-- · 2019-04-30 08:32

For me it makes all the difference of the world adding the slash at the end of the context root. Without the slash, the popup opens. With the slash it logs in as expected.

http://username:password@mysite.com/login --> does not work http://username:password@mysite.com/login/ --> works

firefox version 19.0

查看更多
登录 后发表回答