node-mac-sign-in-with-apple

0.5.0 • Public • Published

node macOS Sign in With Apple

Installation

Using Yarn

yarn add node-mac-sign-in-with-apple

Using NPM

npm install node-mac-sign-in-with-apple

Usage with Electron

Add to main process

import { signInWithApple } from 'node-mac-sign-in-with-apple';

ipcMain.on('sign-in-with-apple', async () => {
  const nativeWindow = mainWindow.getNativeWindowHandle();

  try {
    const data = await signInWithApple(nativeWindow);
    // {
    //   idToken: 'TOKEN',
    //   code: 'CODE',
    //   firstName: 'John',
    //   middleName: 'Chris',
    //   lastName: 'Doe',
    //   email: 'john.doe@example.com'
    // }
  } catch(err) {
    // { code: 1000, message: 'Error message' }
  }
})

Note: Only on first login Apple returns email and user name, on other requests Apple returns only idToken

Add to entitlements.plist

<key>com.apple.developer.applesignin</key>
<array>
  <string>Default</string>
</array>

Thanks

Big thanks to @dynbit for his help and contribution!

License

The package is available as open source under the terms of the MIT License.

Package Sidebar

Install

npm i node-mac-sign-in-with-apple

Weekly Downloads

0

Version

0.5.0

License

MIT

Unpacked Size

11.3 kB

Total Files

9

Last publish

Collaborators

  • jpalumickas
  • nedomas
  • saimis