Socket
Socket
Sign inDemoInstall

@livuvo/live-sdk

Package Overview
Dependencies
0
Maintainers
2
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @livuvo/live-sdk

## Introduction


Version published
Maintainers
2
Created

Readme

Source

Livuvo Live Service Documentation

Introduction

Welcome to the documentation for the @livuvo/live-sdk library. This library facilitates seamless integration of your React application with the Livuvo live service. The provided LivuvoLiveSDK component enables you to connect to livuvo server and render Live and Chat features.

Installation

You can install this package using npm:

npm install @livuvo/live-sdk

or yarn:

yarn add @livuvo/live-sdk

Usage

follow these steps:

  1. Import the SDK:
import { LivuvoLiveSDK } from "@livuvo/live-sdk";
  1. import styles:
import "@livuvo/live-sdk/style.css";
  1. Fetch the configuration data from below API endpoint: https://neo.livuvo.com/authnz/api/v1/user-token/[SPACE-SLUG]/live/[LIVE-SLUG]/

  2. Initialize the configuration and render the LivuvoLiveSDK component:

const fetchedConfig = ...;

<LivuvoLiveSDK  config={fetchedConfig} />

Components

LivuvoLiveSDK

Props

  • config (required): An object containing the configuration data for the Live SDK. It should follow the Config interface.
interface Config {
  display_name: string;
  session: string;
  space_slug: string;
  token: string;
  user_id: string;
  scope: string;
  slug: string;
  is_blocked: boolean;
}
  • isDesktop (optional): A boolean flag indicating whether the app is running in desktop mode or mobile mode. Default value is false.

Conclusion

This library simplifies the integration of your React application with the Livuvo live service. By following the steps outlined in this documentation, you can quickly set up the LivuvoLiveSDK component.

Endpoint description

The endpoint URL for fetching user tokens is: https://neo.livuvo.com/authnz/api/v1/user-token/[SPACE-SLUG]/live/[LIVE-SLUG]/

It's important to note that this endpoint should be accessed from the backend due to security considerations. This is because you need to provide a confidential Authorization token (Authorization header) as part of the request. To obtain an API token, follow these steps:

  1. Visit app.livuvo.com.
  2. Navigate to the space settings page.
  3. In the "API Tokens" section at the bottom, you can generate a new API token.
  4. Set obtained api token as Authorization header.

When making a request to the endpoint, include the following object in the request body: This object should be sent as part of the POST request to the specified URL.

{
  "user_id": "USER_ID",
  "display_name": "DISPLAY_NAME",
  "chat": "rw"
}

Please ensure that you handle this sensitive information securely and follow best practices for API token management.

FAQs

Last updated on 26 Aug 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc