react-native-shield-fraud-plugin
v1.0.10
Published
React Native Shield Fraud Plugin helps developers to assess malicious activities performed on mobile devices and return risk intelligence based on user's behaviour. It collects device's fingerprint, social metrics and network information.
Downloads
7,822
Maintainers
Readme
React Native Shield Fraud Plugin
React Native Plugin for Shield Fraud (www.shield.com)
React Native Shield Fraud Plugin helps developers to assess malicious activities performed on mobile devices and return risk intelligence based on user's behaviour. It collects device's fingerprint, social metrics and network information.
There are few steps to getting started with the SHIELD SDK:
Integrate the SDK
This package can be installed in two ways, you can choose a way depends on your need.
NPM:
npm install react-native-shield-fraud-plugin
OR
YARN:
yarn add react-native-shield-fraud-plugin
Note: We make continuous enhancements to our fraud library and detection capabilities which includes new functionalities, bug fixes and security updates. We recommend updating to the latest SDK version to protect against rapidly evolving fraud risks.
You can refer to the Changelog to see more details about our updates.
Initialize the SDK
The SDK initialization should be configured on useEffect
(for Functional Components) or componentDidMount
(for Class Components) in your App.tsx or on App launch to ensure successful generation and processing of the device fingerprint. The SDK is to be initialized only once and will throw an exception if it is initialized more than once.
You need both the SHIELD_SITE_ID and SHIELD_SECRET_KEY to initialize the SDK. You can locate them at the top of the page.
const config: Config = {
siteID: 'SHIELD_SITE_ID',
secretKey: 'SHIELD_SECRET_KEY'
};
useEffect(() => {
const initializeShield = async () => {
await ShieldFraud.initShield(config);
};
initializeShield();
}, []);
Note - await ShieldFraud.initShield(config)
- The await keyword is used to wait for the promise returned by the initShield function to resolve. In React Native, It is best practice to use await
when calling native modules from React Native, especially during asynchronous
operations such as SDK Initialization. This is because using await
ensures that the main thread is not blocked while the native module is initializing.
Config
has these optional parameters:
logLevel
Set your log level todebug
,info
ornone
. | Receives high-level information about how the SDK processes network requests, responses or error information during SDK integration. Default log level isnone
.environmentInfo
Set your environment info toprod
,dev
orstaging
. Default environment info isprod
.blockedDialog
Set your dialog for the blocked dialog both title and body or you can send it as null as well
Note: You can check whether Shield SDK is ready or not by using isSDKready function
ShieldFraud.isSDKready(async (isReady: boolean) => {
if (isReady) {
// Shield is Ready: Do your implementation
}
}
Get Session ID
Session ID is the unique identifier of a user’s app session and acts as a point of reference when retrieving the device result for that session.
Session ID follows the OS lifecycle management, in-line with industry best practice. This means that a user’s session is active for as long as the device maintains it, unless the user terminates the app or the device runs out of memory and has to kill the app.
If you would like to retrieve device results using the backend API, it is important that you store the Session ID on your system. You will need to call the SHIELD backend API using this Session ID.
ShieldFraud.isSDKready(async (isReady: boolean) => {
if (isReady) {
const sessionID = await ShieldFraud.getSessionId(); // Fetch session ID using await
console.log('session id: ', sessionID);
}
}
Get Device Results
SHIELD provides you actionable device intelligence which you can retrieve from the SDK, via the Optimized Listener
or Customized Pull method
. You can also retrieve results via the backend API.
Warning: Only 1 method of obtaining device results (Optimized Listener or Customized Pull) can be in effect at any point in time.
Retrieve device results via Optimized Listener
SHIELD recommends the Optimized Listener method to reduce number of API calls.
Our SDK will capture an initial device fingerprint upon SDK initialization and return an additional set of device intelligence ONLY if the device fingerprint changes along one session. This ensures a truly optimized end to end protection of your ecosystem.
You can register a callback if you would like to be notified in the event that the device attributes change during the session (for example, a user activates a malicious tool a moment after launching the page).
Add an additional parameter during intialization in order to register a callback.
For example - await ShieldFraud.initShield(config, callbacks);
const callbacks: ShieldCallback = {
onSuccess: (data) => {
// Handle success event here
console.log('Success:', data);
},
onFailure: (error) => {
// Handle failure event here
console.log('Error:', error);
},
};
const config: Config = {
siteID: 'SHIELD_SITE_ID',
secretKey: 'SHIELD_SECRET_KEY'
};
useEffect(() => {
const initializeShield = async () => {
await ShieldFraud.initShield(config, callbacks);
};
initializeShield();
}, []);
Retrieve device results via Customized Pull
You can retrieve device results via Customized Pull at specific user checkpoints or activities, such as account registration, login, or checkout. This is to ensure that there is adequate time to generate a device fingerprint.
ShieldFraud.isSDKready(async (isReady: boolean) => {
if (isReady) {
ShieldFraud.getLatestDeviceResult()
.then((result: object) => {
// Handle success with the result object
console.log('Received latest device result:', result);
})
.catch((error: object) => {
// Handle error with the error object
console.log('Error retrieving device result:', error);
});
}
});
It is possible that getLatestDeviceResult returns null if the device result retrieval is unsuccessful.
Send Custom Attributes
Use the sendAttributes function to sent event-based attributes such as user_id or activity_id for enhanced analytics. This function accepts two parameters:screenName where the function is triggered, and data to provide any custom fields in key, value pairs.
ShieldFraud.isSDKready(async (isReady: boolean) => {
if (isReady) {
ShieldFraud.sendAttributes('Screen_Name', { key1: 'value1', key2: 'value2' });
}
}
Migration from BRIDGE CODE to PLUGIN
If you've been using the old method of integrating the React Native bridge code for the Shield Fraud SDK on iOS and Android, follow these steps to migrate to our plugin.
iOS Migration Steps
1. Remove Old Pod Dependency:
Open your iOS project's Podfile and remove the line pod 'ShieldFraud'
. Then, in your project's root directory, run pod deintegrate
followed by pod install
to ensure the old ShieldFraud dependency is completely removed.
2. Remove Old Bridge Code Files:
In your Xcode project's file explorer, locate and remove the files ShieldModule.h
and ShieldModule.m
. Remove all these references as they are no longer needed.
3. Clean the Project:
Open your Xcode project. Go to "Product"
in the top menu and select "Clean Build Folder"
to make sure any residual build artifacts related to the old ShieldFraud library are removed.
4. Update React Native Project:
In your React Native project, search for any code that references the old ShieldModule
. Remove all these references as they are no longer needed.
5. Follow Plugin Integration Steps: Now that you've cleaned up the old bridge code, follow the integration steps outlined in the documentation under "Integrate the SDK" section, starting from the step of installing the plugin using npm or yarn.
Android Migration Steps
If you've been using the old method of integrating the React Native bridge code for the Shield Fraud SDK on Android, follow these steps to migrate to our plugin.
1. Remove Old Dependencies:
In your app/build.gradle
file, locate and remove the line:
implementation 'com.shield.android:shield-fraud:1.5.+'
2. Update Android Settings:
In your settings.gradle
or project level build.gradle
file from the repositories
block, locate and remove the maven url
:
allprojects {
repositories {
maven {
url "https://cashshield-sdk.s3.amazonaws.com/release/"
}
...
}
}
This is the maven url that you no longer need with the new plugin approach.
3. Remove Old Bridge Code: In your Android project, if you have a ShieldModule.java file as part of the old bridge code integration, you can safely remove it.
4. Update React Native Project: In your React Native project, search for any code that references the old ShieldModule in Java code. Also remove ShieldModule from ReactPackage, Remove all these references as they are no longer needed.
5. Follow Plugin Integration Steps: Now that you've cleaned up the old bridge code, follow the integration steps outlined in the documentation under "Integrate the SDK" section, starting from the step of installing the plugin using npm or yarn.
By following these steps, you'll successfully migrate your React Native project from the old bridge code integration to the new Shield Fraud plugin. This migration will make your project more maintainable and allow you to take advantage of the new features and improvements offered by the plugin.