@datacamp/react-native-zendesk
v1.1.4
Published
Zendesk SDK for React Native.
Downloads
65
Maintainers
Readme
react-native-zendesk
React Native bridge to Zendesk Support SDK v2 on iOS and Android.
Installation
- Add the package via yarn or npm
yarn add react-native-zendesk
npm install --save react-native-zendesk
- Link the modules to your native projects
react-native link react-native-zendesk
Getting Started
Initializing the Support SDK (Required)
const config = {
zendeskUrl: ZENDESK_URL,
appId: ZENDESK_APP_ID,
clientId: ZENDESK_CLIENT_ID,
};
Zendesk.initialize(config);
Setting an identity (Required)
Setting a unique identity
Zendesk.identifyJWT(USER_TOKEN);
Adding Help Center
// possible options to pass to the help center
interface Options {
hideContactSupport?: boolean
}
Zendesk.showHelpCenter(OPTIONS);