I need to store a refresh token from OAuth securely, but I need it to be accessibly by my application for all users on the machine. From what I can tell node-keytar
only supports credentials being stored on a per user account basis. Is there a way to securely store the refresh token?
For what it's worth, this is for an electron app.