Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@startupjs/auth-apple
Advanced tools
@invertase/react-native-apple-authentication: >= 2.1.0
@startupjs/auth: >= 0.33.0
1 - Open project in xCode
2 - Targets -> Signing & Capabilities
3 - Add team
4 - Add Capability - Sign in with Apple
5 - Go to Identifiers. The ID should appear there
6 - Go to Keys
7 - Create a new key. Choose Sign in with Apple. In the tab Edit - select the desired one Primary App ID
8 - After registration, save Key ID and download the p8 certificate
9 - Key ID to throw in config as APPLE_KEY_ID
10 - Go to Services IDs
11 - Register a Service ID, with any ID
12 - Throw this ID in config.json as APPLE_CLIENT_ID
13 - We go into it, put a check mark Sign In with Apple
14 - Opening Configure
15 - We put the desired one Primary App ID
16 - Filling domain and callback urls. Apple does not accept localhost, you can use ngrok for tests, for example:
https://c48c1b8bb802.ngrok.io/auth/apple/callback,
https://c48c1b8bb802.ngrok.io/auth/apple/callback-native
Importing a strategy:
import { Strategy as AppleStrategy } from '@startupjs/auth-apple/server'
Importing a lib for the config:
import conf from 'nconf'
In startupjsServer, in the strategy of the initAuth function, you need to add AppleStrategy, with variables from the config:
initAuth(ee, {
strategies: [
new AppleStrategy({
clientId: conf.get('APPLE_CLIENT_ID'),
teamId: conf.get('APPLE_TEAM_ID'),
keyId: conf.get('APPLE_KEY_ID'),
privateKeyLocation: path.join(process.cwd(), 'путь к файлу p8')
})
]
})
For tests, you can use testBaseUrl
import { AuthButton as AppleAuthButton } from '@startupjs/auth-apple/client'
FAQs
Auth plugin for StartupJS auth module
We found that @startupjs/auth-apple demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.