Stipop Docs | Documentation for SDK and API

Quick Implementation

Unified Component for React is a set of prebuilt UI components that allows you to easily craft an in-app chat with stickers you downloaded and all the essential search features. You can implement Unified Component by using the following step. This component support both sticker download and remove function and both search functions and search results.

Before you begin

Make sure you went through all processes in Before You Begin to sign up for stipop dashborad and get API Key, which is reuiqred to complete development of the SDK.

Using Unified Component

apikey : Stipop API key for your app.
userId : Unique value for every user to distinguish unique users. The userId can be a string of any format.

React

1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { UnifiedComponent } from 'stipop-react-sdk'

const App = () => {
  return (
    <UnifiedComponent 
      params={{
        apikey: 'apikey',
        userId: 'userId',
      }}
    />
  )
}

export default App

Next.js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import dynamic from 'next/dynamic'

const UnifiedComponent = dynamic(
  () => import('stipop-react-sdk/dist/UnifiedComponent'),
  {
    ssr: false,
  })
  
const App = () => {
  return (
    <UnifiedComponent 
      params={{
        apikey: 'apikey',
        userId: 'userId',
      }}
    />
  )
}

export default App
We’re here to help. Contact us.