{"id":19850210,"url":"https://github.com/authsignal/react-native-authsignal","last_synced_at":"2026-04-02T00:29:06.592Z","repository":{"id":62187003,"uuid":"557629353","full_name":"authsignal/react-native-authsignal","owner":"authsignal","description":"Authsignal React Native SDK for authenticating with passkeys, push, email OTP, SMS OTP and authenticator app (TOTP)","archived":false,"fork":false,"pushed_at":"2026-03-23T02:15:24.000Z","size":2277,"stargazers_count":5,"open_issues_count":1,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-23T14:45:59.099Z","etag":null,"topics":["android","authentication","authenticator-app","email-otp","fido2","ios","mfa","passkeys","passwordless","push","react-native","sms-otp","totp","typescript","webauthn"],"latest_commit_sha":null,"homepage":"https://docs.authsignal.com","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/authsignal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-10-26T02:26:45.000Z","updated_at":"2026-03-23T02:14:01.000Z","dependencies_parsed_at":"2022-10-28T02:45:27.231Z","dependency_job_id":"060a37ff-b78f-4f91-9b38-aaaf6e9a8e56","html_url":"https://github.com/authsignal/react-native-authsignal","commit_stats":null,"previous_names":[],"tags_count":110,"template":false,"template_full_name":null,"purl":"pkg:github/authsignal/react-native-authsignal","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/authsignal%2Freact-native-authsignal","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/authsignal%2Freact-native-authsignal/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/authsignal%2Freact-native-authsignal/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/authsignal%2Freact-native-authsignal/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/authsignal","download_url":"https://codeload.github.com/authsignal/react-native-authsignal/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/authsignal%2Freact-native-authsignal/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31293376,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T21:15:39.731Z","status":"ssl_error","status_checked_at":"2026-04-01T21:15:34.046Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","authentication","authenticator-app","email-otp","fido2","ios","mfa","passkeys","passwordless","push","react-native","sms-otp","totp","typescript","webauthn"],"created_at":"2024-11-12T13:24:47.356Z","updated_at":"2026-04-02T00:29:06.582Z","avatar_url":"https://github.com/authsignal.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg width=\"1070\" alt=\"Authsignal\" src=\"https://raw.githubusercontent.com/authsignal/react-native-authsignal/main/.github/images/authsignal.png\"\u003e\n\n# Authsignal React Native SDK\n\nCheck out our [official Mobile SDK documentation](https://docs.authsignal.com/sdks/client/mobile/setup).\n\n## Installation\n\nInstall the Authsignal React Native SDK using npm or yarn:\n\n```bash\nnpm install react-native-authsignal\n```\n\nThen link the native iOS dependencies:\n\n```bash\nnpx pod-install ios\n```\n\n## Initialization\n\nInitialize the Authsignal client in your code:\n\n```ts\nimport { Authsignal } from 'react-native-authsignal';\n\nconst authsignal = new Authsignal({\n  tenantId: 'YOUR_TENANT_ID',\n  baseUrl: 'YOUR_REGION_BASE_URL',\n});\n```\n\nYou can find your `tenantId` in the [Authsignal Portal](https://portal.authsignal.com/organisations/tenants/api).\n\nYou must specify the correct `baseUrl` for your tenant's region.\n\n| Region      | Base URL                         |\n| ----------- | -------------------------------- |\n| US (Oregon) | https://api.authsignal.com/v1    |\n| AU (Sydney) | https://au.api.authsignal.com/v1 |\n| EU (Dublin) | https://eu.api.authsignal.com/v1 |\n\n## Usage\n\n### Passkeys\n\nFor more detailed info on how add passkeys to your app using Authsignal, check out our [passkey documentation for Mobile SDKs](https://docs.authsignal.com/authentication-methods/passkey/mobile-sdks).\n\n### App verification\n\nTo see how to add app verification with push notifications or QR codes, see our [app verification documentation for Mobile SDKs](https://docs.authsignal.com/authentication-methods/app-verification/push).\n\n## Examples\n\n### Passkeys\n\nYou can check out [this Github repo](https://github.com/authsignal/mobile-sdk-example) to see an example app which implements a sign-in with passkey flow using the Authsignal React Native SDK.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fauthsignal%2Freact-native-authsignal","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fauthsignal%2Freact-native-authsignal","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fauthsignal%2Freact-native-authsignal/lists"}