Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@startupjs/auth-apple

Package Overview
Dependencies
Maintainers
7
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@startupjs/auth-apple

Auth plugin for StartupJS auth module

  • 0.30.6
  • npm
  • Socket score

Version published
Weekly downloads
25
decreased by-21.87%
Maintainers
7
Weekly downloads
 
Created
Source

Авторизация через Apple

Инициализация главного модуля

Настройка главного модуля

Установка зависимостей

yarn add @startupjs/auth-apple yarn add @invertase/react-native-apple-authentication

Force compile

В webpack.server.config.cjs -> forceCompileModules добавить: @startupjs/auth-apple/server

В webpack.web.config.cjs -> forceCompileModules добавить: @startupjs/auth-apple

Настройка приложения

1 - Открыть проект в xCode 2 - Targets -> Signing & Capabilities 3 - Добавить команду 4 - Дабавить Capability - Sign in with Apple 5 - Перейти в Identifiers. Там должен появиться идентификатор 6 - Перейти в Keys 7 - Создать новый ключ. Выбрать Sign in with Apple. Во вкладке Edit - выбрать нужный Primary App ID 8 - После регистрации сохранить Key ID и скачать сертификат p8 9 - Key ID закинуть в config как APPLE_KEY_ID`` 10 - Перейти в [Services IDs](https://developer.apple.com/account/resources/identifiers/list/serviceId) 11 - Зарегестрировать Service ID, с любым ID 12 - Закинуть этот ID в **config.json** как APPLE_CLIENT_ID` 13 - Заходим в него, ставим галочку Sign In with Apple 14 - Открываем Configure 15 - Ставим нужный Primary App ID 16 - Заполняем домен и callback urls. localhost Apple не принимает, для тестов можно использовать ngrok, н-р: https://c48c1b8bb802.ngrok.io/auth/apple/callback, https://c48c1b8bb802.ngrok.io/auth/apple/callback-native

Инициализация на сервере

Импорт стратегии:

import { Strategy as AppleStrategy } from '@startupjs/auth-apple/server'

Импорт либы для конфига:

import conf from 'nconf'

В startupjsServer, в стратегии функции initAuth нужно добавить AppleStrategy, с переменными из конфига:

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')
    })
  ]
})

Для тестов можно использовать testBaseUrl

Инициализация в верстке

import { AuthButton as AppleAuthButton } from '@startupjs/auth-apple/client'

FAQs

Package last updated on 21 Dec 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc