Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make iOS Safari saves password for basic authentication website?

I'm currently developing a website using basic authentication over https

Some customers using iOS Safari have complained that Safari does not ask to save password.

it seems that iOS Safari asks to save password only when the website implements a form based authentication.

I don't want to install a third party browser or app on all devices to solve this problem.

So, is there any way to force iOS Safari to save password for basic authentication websites ?

like image 456
PEC Avatar asked Oct 07 '14 13:10

PEC


1 Answers

According to answer on this question, you are not able to save Http Basic Auth credentials with Safari on IOS. If the security level of your service permits, you can save the credentials to a bookmark by adding credentials to it like so:

https://username:[email protected]/path

like image 75
KLaalo Avatar answered Oct 13 '22 11:10

KLaalo