sign_in_with_apple_js

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

sign in with apple js

sign_in_with_apple_js #
A Dart wrapper for the Sign in with Apple JS framework. Also contains some helper functions to abstract javascript calls.
Setup #
From Apple docs:

Include the script tag and link to Appleā€™s hosted version of the Sign in with Apple JS framework in your web page:

<script type="text/javascript" src="https://appleid.cdn-apple.com/appleauth/static/jsapi/appleid/1/en_US/appleid.auth.js"></script>
copied to clipboard

Configure the authorization object using only markup by setting the meta tags in the header section and displaying a Sign in with Apple button, as in the following example:


This step can be skipped by explicitly setting these options using AppleID.auth.init() (see below).

<head>
<meta name="appleid-signin-client-id" content="[CLIENT_ID]">
<meta name="appleid-signin-scope" content="[SCOPES]">
<meta name="appleid-signin-redirect-uri" content="[REDIRECT_URI]">
<meta name="appleid-signin-state" content="[STATE]">
<meta name="appleid-signin-nonce" content="[NONCE]">
<meta name="appleid-signin-use-popup" content="true"> <!-- or false defaults to false -->
</head>
copied to clipboard
Initialization #

This step can be skipped by setting the above meta tags in the <head> section of your html document (see above).


Import the package:

import 'package:apple_sign_in_js/sign_in_with_apple_js.dart';
copied to clipboard

Call init with the necessary options:


Any required options specified in html <meta> tags can be omitted.

initSignInWithApple(ClientConfigI(
clientId: [CLIENT_ID], // required (Apple ServiceID)
redirectURI: [REDIRECT_URI], // required
scope: [SCOPES], // space-delimited list (i.e. "name email")
state: [STATE],
nonce: [NONCE]
usePopup: [USE_POPUP], // defaults to false
));
copied to clipboard
Handling the Authorization Response #

Import the interop library for AppleID.auth:

import 'package:sign_in_with_apple_js/sign_in_with_apple_js.dart';
copied to clipboard

Make asynchronous call to signInWithApple():

SignInResponseI response = await signInWithApple();
copied to clipboard

Use the id-token or authorization-code from SignInResponseI to create a session on your server.


The data returned in SignInResponseI from signInWithApple is short-lived (5 minutes).

Listening to Events #

Import the package:

import 'package:sign_in_with_apple_js/sign_in_with_apple_js.dart';
copied to clipboard

Add callbacks for success and failure events:

/// on `AppleIDSignInOnSuccess`
final streamSub = listenAppleIDSignInOnSuccess((event) => print("Success."));

/// on `AppleIDSignInOnFailure`
final streamSub = listenAppleIDSignInOnFailure((event) => print("Failure."))
copied to clipboard
Using the Javascript Wrapper Directly #
Alternative, if you'd just like access to Sign in with Apple JS on your page, you can directly import the wrapper:
import 'package:sign_in_with_apple_js/apple_id_auth_js.dart';
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.