Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Musish | 2,970 | 12 days ago | 169 | agpl-3.0 | TypeScript | |||||
Apple Music...ish | ||||||||||
React Native Touch Id | 1,454 | 113 | 17 | 2 months ago | 29 | February 15, 2019 | 120 | Java | ||
React Native authentication with the native Touch ID popup. | ||||||||||
Add To Calendar Button | 1,225 | 8 | 2 days ago | 103 | August 30, 2023 | 1 | other | JavaScript | ||
The convenient JavaScript snippet, which lets you reliably create beautiful buttons, where people can add events to their calendars. | ||||||||||
React Native Apple Authentication | 1,155 | 22 | 7 months ago | 23 | July 14, 2022 | 27 | other | JavaScript | ||
A React Native library providing support for Apple Authentication on iOS and Android. | ||||||||||
Mntpulltoreact | 782 | 2 | 8 years ago | 4 | March 24, 2015 | apache-2.0 | Objective-C | |||
One gesture, many actions. An evolution of Pull to Refresh. | ||||||||||
React Native Tvos | 669 | 3 | 6 days ago | 47 | September 24, 2022 | 14 | cc-by-4.0 | Java | ||
React Native repo with additions for Apple TV and Android TV support. https://douglowder.github.io/react-native-apple-tv/ | ||||||||||
React Native Health | 615 | 2 days ago | 27 | November 29, 2021 | 85 | mit | Objective-C | |||
A React Native package to interact with Apple HealthKit | ||||||||||
React Native Header View | 590 | 6 | 2 months ago | 36 | September 20, 2021 | 3 | mit | Java | ||
Fully customizable Header View with multiple design options for React Native. | ||||||||||
React Native Watch Connectivity | 582 | 3 | 3 | 3 months ago | 43 | June 29, 2022 | 20 | mit | TypeScript | |
Enable communication between apple watch app and react native | ||||||||||
React Native Carplay | 530 | 20 days ago | 32 | June 20, 2022 | 38 | TypeScript | ||||
CarPlay with React Native |
Apple signin for React using the official Apple JS SDK
Checkout the demo for a quick start!
Deatiled confuguration instructions can be found at blog post and Apple docs and official apple docs for webpage signin.
npm i react-apple-signin-auth
OR
yarn add react-apple-signin-auth
Checkout the demo for a quick start!
import AppleSignin from 'react-apple-signin-auth';
/** Apple Signin button */
const MyAppleSigninButton = () => (
<AppleSignin
/** Auth options passed to AppleID.auth.init() */
authOptions={{
/** Client ID - eg: 'com.example.com' */
clientId: 'com.example.web',
/** Requested scopes, seperated by spaces - eg: 'email name' */
scope: 'email name',
/** Apple's redirectURI - must be one of the URIs you added to the serviceID - the undocumented trick in apple docs is that you should call auth from a page that is listed as a redirectURI, localhost fails */
redirectURI: 'https://example.com',
/** State string that is returned with the apple response */
state: 'state',
/** Nonce */
nonce: 'nonce',
/** Uses popup auth instead of redirection */
usePopup: ${authOptions.usePopup},
}} // REQUIRED
/** General props */
uiType="dark"
/** className */
className="apple-auth-btn"
/** Removes default style tag */
noDefaultStyle={false}
/** Allows to change the button's children, eg: for changing the button text */
buttonExtraChildren="Continue with Apple"
/** Extra controlling props */
/** Called upon signin success in case authOptions.usePopup = true -- which means auth is handled client side */
onSuccess={(response) => console.log(response)} // default = undefined
/** Called upon signin error */
onError={(error) => console.error(error)} // default = undefined
/** Skips loading the apple script if true */
skipScript={false} // default = undefined
/** Apple image props */
iconProp={{ style: { marginTop: '10px' } }} // default = undefined
/** render function - called with all props - can be used to fully customize the UI by rendering your own component */
render={(props) => <button {...props}>My Custom Button</button>}
/>
);
export default MyAppleSigninButton;
user
objectonSuccess
response object will contain the user object on the first time attempt only. Meaning if you make another signIn attempt for the same account you will not get the user object.
a module called appleAuthHelpers
is also exported to allow you to use the functionality without using the UI or relying on React. This works with any kind of frontend JS, eg: react, vue, etc... Note that you need to load the apple script yourself.
// using raw html:
<script src="https://appleid.cdn-apple.com/appleauth/static/jsapi/appleid/1/en_US/appleid.auth.js" defer></script>
// OR using react hooks:
import { useScript, appleAuthHelpers } from 'react-apple-signin-auth';
const myComponent = () => {
useScript(appleAuthHelpers.APPLE_SCRIPT_SRC);
// ...
};
export default myComponent;
import { appleAuthHelpers } from 'react-apple-signin-auth';
// OR
// import appleAuthHelpers from 'react-apple-signin-auth/dist/appleAuthHelpers'; // @unstable - might change with upgrades
/**
* perform apple signIn operation
*/
appleAuthHelpers.signIn({
authOptions: {
// same as above
},
onSuccess: (response) => console.log(response),
onError: (error) => console.error(error),
});
// OR
/** promisified version - promise resolves with response on success or undefined on error -- note that this only work with usePopup: true */
const response = await appleAuthHelpers.signIn({
authOptions: {
// same as above
},
onError: (error) => console.error(error),
});
if (response) {
console.log(response);
} else {
console.error('Error performing apple signin.');
}
Another library exists for server/backend support for Apple signin apple-signin-auth
yarn add apple-signin-auth
OR npm i apple-signin-auth
const appleSignin = require("apple-signin-auth");
const { authorization, user } = req.body;
try {
const { sub: userAppleId } = await appleSignin.verifyIdToken(
authorization.id_token, // We need to pass the token that we wish to decode.
{
audience: "com.example.web", // client id - The same one we used on the frontend, this is the secret key used for encoding and decoding the token.
nonce: 'nonce' // nonce - The same one we used on the frontend - OPTIONAL
}
);
} catch (err) {
// Token is not verified
console.error(err);
}
Pull requests are highly appreciated! For major changes, please open an issue first to discuss what you would like to change.
git clone https://github.com/a-tokyo/react-apple-signin-auth
yarn
yarn start
yarn test -u