Zendesk messaging SDK for React Native
npm install react-native-zendesk-messaging# react-native-zendesk-messaging

Zendesk messaging SDK for React Native




- 🔥 Not a Classic SDKs. It's new SDKs
- 🗣️ Basic conversation features
- 🔔 Push Notifications
- support native customizing or integrate with @react-native-firebase/messaging
- ✅ Support SDK events
- 🔑 User Authentication
- 🚗 Visitor Path
- 📝 Conversation Metadata(fields and tags)
Read official announcement about new messaging SDKs here.
``sh`
npm install react-native-zendesk-messagingor
yarn add react-native-zendesk-messaging
Read Getting Started Guide.
`js
import React, { useEffect } from 'react';
import {
StyleSheet,
SafeAreaView,
Pressable,
Text
} from 'react-native';
import * as Zendesk from 'react-native-zendesk-messaging';
const CHANNEL_KEY = 'YOUR_ZENDESK_CHANNEL_KEY';
function App() {
useEffect(() => {
Zendesk.initialize({ channelKey: CHANNEL_KEY })
.then(() => / success /)
.catch((error) => / failure /);
}, []);
const handlePressOpenButton = () => {
Zendesk.openMessagingView();
};
return (
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
},
});
``
For more details, Read the API References.
If you're interested in contributing, check out the Contributing Guide.
See CONTRIBUTING.md.
---
Made with create-react-native-library