Hugo
Hugo

Reputation: 1

How to use ticket kerberos in app electron.js?

I am developing a cross platform application with electron.js. I need to call a web api that is on an iis server with integrated security.

On a Mac computer I created a kerberos ticket to connect to the web API, from a chrome browser it does not ask me for credentials because it uses the ticket ones. But from the app electron does not use the kerberos ticket. How I do this?

Upvotes: 0

Views: 1163

Answers (1)

Redanium
Redanium

Reputation: 879

You can use kerberos Node.js module in browser side of your application like this one, kerberos or you can search npm try different ones. Later you can connect browser side responsible for business logic with renderer side(UI) via ipc module.

Upvotes: 1

Related Questions