
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
@nicokaiser/passport-apple
Advanced tools
Passport strategy for authenticating with Sign in with Apple.
$ npm install @nicokaiser/passport-apple
Before using this module, you must register a service with Apple. You need an Apple Developer Account for this.
com.example.test
, and enable the "Sign in with Apple" capability.com.example.account
. This is the clientID
for the module configuration. Configure "Sign in with Apple" for this service and set the Return URLs.keyID
.The Sign in with Apple authentication strategy authenticates users using an Apple ID and OAuth 2.0 tokens. The strategy options are supplied in the step above. The strategy also requires a verify
callback, which receives an access token and profile, and calls cb
providing a user.
passport.use(new AppleStrategy({
clientID: 'com.example.account', // Services ID
teamID: '1234567890', // Team ID of your Apple Developer Account
keyID: 'ABCDEFGHIJ', // Key ID, received from https://developer.apple.com/account/resources/authkeys/list
key: fs.readFileSync(path.join('path', 'to', 'AuthKey_XYZ1234567.p8')), // Private key, downloaded from https://developer.apple.com/account/resources/authkeys/list
scope: ['name', 'email'],
callbackURL: 'https://example.com/auth/apple/callback'
},
(accessToken, refreshToken, profile, cb) => {
User.findOrCreate({ exampleId: profile.id }, (err, user) => {
return cb(err, user);
});
}
));
If passReqToCallback
is set to true
, req
will be passed as the first argument to the verify callback:
passport.use(new AppleStrategy({
clientID: 'com.example.account', // Services ID
...
passReqToCallback: true
},
(req, accessToken, refreshToken, profile, cb) => {
...
}
));
Use passport.authenticate()
, specifying the 'apple'
strategy, to authenticate requests. The authorization code is passed via the code
POST parameter, so your endpoint callback needs to support HTTPS POST and provide the req.body
property.
For example, as route middleware in an Express application, using express.urlencoded
to provide req.body
:
app.get('/auth/apple',
passport.authenticate('apple'));
app.post('/auth/apple/callback',
express.urlencoded(),
passport.authenticate('apple', { failureRedirect: '/login' }),
(req, res) => {
// Successful authentication, redirect home.
res.redirect('/');
});
You can find a complete example at examples/server.js.
To supply and verify a nonce to prevent a login session from being replayed, use the verifyNonce option when creating the strategy:
const generatedNonces = new NodeCache();
passport.use(new AppleStrategy({
...
verifyNonce: function(req, nonce, callback){
if(generatedNonces.take(nonce)){
callback(null, true);
}else{
callback(new Error('invalid nonce'), false);
}
},
},
...
);
And supply a nonce value in the options to each authenticate call:
app.post('/auth/apple/callback',
express.urlencoded(),
function(req, res, next){
const nonce = crypto.randomBytes(16).toString('hex');
generatedNonces.set(nonce, 1);
passport.authenticate('apple', { failureRedirect: '/login', nonce: nonce })(req, res, next);
},
(req, res) => {
// Successful authentication, redirect home.
res.redirect('/');
});
For multi-server applications the nonces must be shared between all servers, for example by storing them in a shared cache or database.
Apple currently returns a User ID that is tied to you Team ID. That means, the same Apple ID will result in the same User ID returned for authentication requests done with your Team ID. Other Teams will get a different ID for this User.
Also, if the User wants to, their name and email address is returned:
{ id, name: { firstName, lastName }, email } = profile;
Note that the name
and email
properties are only returned on the first login the user.
The login flow for Sign in with Apple is similar to OAuth 2 and OpenID Connect, but there are quite some differences. The OpenID Foundation published a document about this: How Sign In with Apple differs from OpenID Connect.
Namely, instead of a static client_secret
, a JWT is used, however in a non-standard way. Also, user data is submitted alongside the authentication code via HTTP POST (and only if the "form_post" response mode is used!).
Apple is still working on the interfaces, as Sign in with Apple is still in beta, so it may be OIDC compliant at some point in the future.
passport-apple uses passport-oauth2 and replaces its client secret methods. This works, however it does not support retrieving user data (like name and email). In order to properly support this, you would need to basically re-write a slimmed down version of passport-oauth2, which basically is what this module provides.
Copyright (c) 2019 Nico Kaiser <https://kaiser.me/>
FAQs
Sign in with Apple strategy for Passport
The npm package @nicokaiser/passport-apple receives a total of 3,275 weekly downloads. As such, @nicokaiser/passport-apple popularity was classified as popular.
We found that @nicokaiser/passport-apple demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.