Kariudo
Kariudo

Reputation: 551

How can I allow NTLM pass-thru in a Chrome App?

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

Answers (1)

Kariudo
Kariudo

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

Related Questions