React Native SDK
Installation
With npm
:
npm install --save @meshconnect/react-native-link-sdk
With yarn
:
yarn add @meshconnect/react-native-link-sdk
💡 This package requires react-native-webview
to be installed in your project. Although it is listed as direct dependency, some times it is not installed automatically (This is a known npm issue). You should install it manually via following command in this case:
Get Link token
Link token should be obtained from the POST /api/v1/linktoken
endpoint. API reference for this request is available here. The request must be performed from the server side because it requires the client’s secret. You will get the response in the following format:
Launch Link
ℹ️ See full source code example at examples/.
LinkConnect
component arguments
Key | Type | Required/Optional |
---|---|---|
linkToken | string | required |
onIntegrationConnected | (payload: LinkPayload) => void | optional |
onTransferFinished | (payload: TransferFinishedPayload) => void | optional |
onExit | (err: string) => void) | optional |
Typescript support
Typescript definitions for @meshconnect/react-native-link-sdk
are built into the npm package.
Adding URL Schemes to Info.plist
To enable our SDK to interact with specific apps, please add the following URL schemes to your info plist file
- Open your info.plist located in the ‘ios’ directory of your React Native project
- Add the following XML snippet within the
<dict></dict>
tag.