Installation

Installing with a Package Manager

It can be installed as an npm package.

This package can only be used in a web environment and cannot be used in Android or iOS hybrid apps (Webview).

npm install @wepin/sdk-js

Once the installation is complete, you can check that it has been added under "dependencies" in your package.json file as shown below:

{
  "dependencies": {
    "@wepin/sdk-js": "^0.0.1"
  }
}

Once the installation is complete, initialize the wepinSDK instance using the App ID and App Key assigned after registering the app. This will enable the use of WepinSDK.

// 1. Import the package
import { WepinSDK } from '@wepin/sdk-js'

// 2. Initialization
const wepinSdk = new WepinSDK({
    appId: 'your-wepin-app-id',
    appKey: 'your-wepin-api-key',
})

Last updated

Was this helpful?