Reputation: 551
Trying to convert an existing web-application to a Chrome app, currently I am at an impass with authenticating to my REST API what expects NTLM/Windows Authentication to provide pass-thru user credentials.
Is there a permission I need to manifest to allow this?
Upvotes: 1
Views: 132
Reputation: 551
Looks like the trick was to specify the server itself in the permissions of the manifest.json
"permissions": [
"identity",
"http://localhost/*"
]
Upvotes: 1