0.5.0 • Published 2 years ago

oauth2-server-grant-type-apple v0.5.0

Weekly downloads
5
License
MIT
Repository
github
Last release
2 years ago

OAuth2 Server Apple Grant Type

Adds Apple grant type for oauth2-server

Installation

Using Yarn

yarn add oauth2-server-grant-type-apple

Using NPM

npm install oauth2-server-grant-type-apple

Usage

Add getUserWithApple to oauth2-server model.

  const getUserWithApple = async (jwtData) => {
    // Find and return user by Apple ID (sub in jwtData)

    // Find and return user by Apple email

    // If not exists create new user
  }

Add Apple grant type to extendedGrantTypes in oauth2-server options:

  import AppleGrantType from 'oauth2-server-grant-type-apple';

  const options = {
    model: ...,
    extendedGrantTypes: {
      apple: AppleGrantType,
    }
    requireClientAuthentication: {
      apple: false,
    },
  }

You need to provide Apple App ID in model appleGrantType :

const options = {
  model: {
    ...model,
    appleGrantType: {
      appId: 'com.example.apple.login' // Array also supported
    },
  },
}

Post request to /oauth/token with apple grant type and provided token:

{
  "grant_type": "apple",
  "client_id": "YOUR_CLIENT_ID",
  "apple_token": "APPLE_JWT_TOKEN",
  "name": "User full name"
}

License

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

0.5.0

2 years ago

0.4.0

3 years ago

0.3.0

3 years ago

0.2.0

3 years ago

0.1.1

4 years ago

0.1.0

4 years ago