@capacitor-community/device-check
The DeviceCheck API is used to reduce fraudulent use of your services by managing device state and asserting app integrity.
This plugin calls the DeviceCheck API generateToken
method which returns a token that your App's server must verify with Apple Servers.
The call generateToken
will return a token
on success which you must send to your backend for verification. See Apple's Docs on this.
token
is a base64 encoded string containing the token returned by []DCDevice.current.generateToken
](https://developer.apple.com/documentation/devicecheck/dcdevice/generatetoken(completionhandler:)).
npm install @capacitor-community/device-check
npx cap sync
import { DeviceCheck } from '@capacitor-community/device-check';
...
try {
const result = await DeviceCheck.generateToken();
console.log(`DeviceCheck token`, result.token);
} catch (err) {
// Recommendation: Report to backend and exit the application
}
- If you are using Capacitor 5 use version 5.x
- If you are using Capacitor 6 use version 6.x
generateToken() => Promise<{ token: string; }>
Returns: Promise<{ token: string; }>
The following errors can occur and should be handled.
On Web and Android the result of generateToken
will be an empty token ""
.
On iOS these errors can be caught in a catch
:
DeviceCheck is not supported on this device
- iOS reports that the device doesnt support the Device Check API (eg iOS less than v11)DeviceCheck token encoding failed
- iOS failed to encode the token.DeviceCheck error: [some-error]
- iOS reported some other error with the localized error description of[some-error]