{"id":26224728,"url":"https://github.com/authgear/authgear-example-ionic","last_synced_at":"2025-10-13T04:40:29.193Z","repository":{"id":277420449,"uuid":"930295602","full_name":"authgear/authgear-example-ionic","owner":"authgear","description":null,"archived":false,"fork":false,"pushed_at":"2025-04-04T04:23:17.000Z","size":444,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-04T05:24:14.960Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/authgear.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-02-10T12:03:53.000Z","updated_at":"2025-04-04T04:23:22.000Z","dependencies_parsed_at":"2025-03-12T18:33:51.222Z","dependency_job_id":"4f6264a5-3590-49a0-bf09-aa259fa2eaf3","html_url":"https://github.com/authgear/authgear-example-ionic","commit_stats":null,"previous_names":["authgear/authgear-example-ionic"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/authgear/authgear-example-ionic","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/authgear%2Fauthgear-example-ionic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/authgear%2Fauthgear-example-ionic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/authgear%2Fauthgear-example-ionic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/authgear%2Fauthgear-example-ionic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/authgear","download_url":"https://codeload.github.com/authgear/authgear-example-ionic/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/authgear%2Fauthgear-example-ionic/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279013685,"owners_count":26085390,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-13T02:00:06.723Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-03-12T18:27:24.119Z","updated_at":"2025-10-13T04:40:29.186Z","avatar_url":"https://github.com/authgear.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Authgear sample for Ionic\n\nThis repo demonstrates how to add authentication into an Ionic apps using Authgear.\n\n## Project setup\n\n1. Clone repo\n2. Install dependencies command:\n```\nnpm install\n```\n\n### Create Free Authgear Account\n1. Goto [https://portal.authgear.com](https://portal.authgear.com) and create a free account (or login to your existing account).\n\n2. Then navigate to Applications and create a new client application of type Native App.\n\n### Configuration\n\nThe project needs to be configured with your Authgear app's Endpoint and client ID in order for the authentication flow to work.\n\nTo do this, rename `.env.example` in the root directory of the project to `.env`, then open the file and add your Authgear client application's Client ID and Endpoint as the value for `VITE_AUTHGEAR_CLIENT_ID` and `VITE_AUTHGEAR_ENDPOINT` respectively.\n\nAdd the following URIs to your Authgear client application's Authorized Redirect URI:\n\n- `com.authgear.example.capacitor://host/path`\n- `capacitor://localhost`\n- `http://localhost:8100/oauth-redirect`\n- `https://localhost`\n\nTo test the app on the web, run the following command:\n```\nionic serve\n```\nTo build and run your application on mobile, use the following commands:\nBuild your code:\n\n```\nnpm run build\n```\nSync changes to mobile platforms\n```\nnpx cap sync\n```\nOpen project on Android:\n```\nnpx cap open android\n```\nOr open project on iOS:\n```\nnpx cap open ios\n```\nRun your project from Android Studio or Xcode.\n\n## What is Authgear?\n\n[Authgear](https://www.authgear.com/) is a highly adaptable identity-as-a-service (IDaaS) platform for web and mobile applications.\nAuthgear makes user authentication easier and faster to implement by integrating it into various types of applications - from single-page web apps to mobile applications to API services.\n\n### Key Features\n\n- Zero trust authentication architecture with [OpenID Connect](https://openid.net/developers/how-connect-works/) (OIDC) standard.\n- Easy-to-use interfaces for user registration and login, including email, phone, username as login ID, and password, OTP, magic links, etc for authentication.\n- Support a wide range of identity providers, such as [Google](https://developers.google.com/identity), [Apple](https://support.apple.com/en-gb/guide/deployment/depa64848f3a/web), and [Azure Active Directory](https://azure.microsoft.com/en-gb/products/active-directory/) (AD).\n- Support biometric login on mobile, Passkeys, and Multi-Factor Authentication (MFA) such as SMS/email-based verification and authenticator apps with TOTP.\n\n## Documentation\n\nView other Authgear Documentation at [https://docs.authgear.com/](https://docs.authgear.com/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fauthgear%2Fauthgear-example-ionic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fauthgear%2Fauthgear-example-ionic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fauthgear%2Fauthgear-example-ionic/lists"}