Answer by Wei Liu for Broken HTTP basic authentication in web apps on iOS 7?
This worked for me.+ (void) setBasicAuth{ NSURLCredentialStorage* store = [NSURLCredentialStorage sharedCredentialStorage]; NSURLCredential* creds = [NSURLCredential credentialWithUser:@"user"...
View ArticleAnswer by Adhooo for Broken HTTP basic authentication in web apps on iOS 7?
I think this may be related to the dialog problem described here. Standard dialogs are not working at all, such as alert, confirm or prompt.The login prompt that is shown to authenticate the user is...
View ArticleAnswer by Ross Dargan for Broken HTTP basic authentication in web apps on iOS 7?
I found that by removing windows auth from iis, and leaving only basic with the realm set to the domain solved this issue for me. Give that a try.
View ArticleAnswer by anders for Broken HTTP basic authentication in web apps on iOS 7?
I‘m experiencing the exact same problem. It works when putting username and password in the url of your web app and
View ArticleBroken HTTP basic authentication in web apps on iOS 7?
I'm using basic authentication for a simple app but it stopped working in web app mode on iOS 7. It works in Safari, it worked on iOS 6 both in Safari and as a standalone web app, but after migrating...
View Article