🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more
Socket
Book a DemoInstallSign in
Socket

gaia-community-chat-lib

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gaia-community-chat-lib

가이아 메시징 프로토콜을 사용하여 웹 사이트에 채팅방을 구현할 수 있는 라이브러리입니다. `chatRoomId`와 `secretKey`를 발급받고자 하시는 분들께서는 [Gaia Protocol Contact](https://gaiaprotocol.com/contact) 페이지를 통해 연락을 부탁드립니다.

latest
npmnpm
Version
0.0.1
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

gaia-community-chat-lib

가이아 메시징 프로토콜을 사용하여 웹 사이트에 채팅방을 구현할 수 있는 라이브러리입니다. chatRoomIdsecretKey를 발급받고자 하시는 분들께서는 Gaia Protocol Contact 페이지를 통해 연락을 부탁드립니다.

토큰 취득 예시

서버사이드에서 실행

const chatRoomId = "test";
const secretKey = "1b295164-9c66-4627-b08b-683ace4a4fea";

const result = await fetch(`https://backend.gaiaprotocol.com/community/chat/${chatRoomId}/token?${new URLSearchParams({
    name: "YJ",
    profileImage: "https://noun.pics/123.svg",
})}`, {
    headers: {
        "Authorization": `Bearer ${secretKey}`,
    },
});

const token = await result.text();

사용방법

  • gaia-community-chat-lib-0.0.1.js 파일을 HTML에서 불러옵니다.
  • 토큰 취득 예시를 참고해 "서버사이드"에서 로그인한 유저의 정보를 가이아 서버로 보내고 토큰을 받아옵니다.
  • 받아온 토큰으로 웹 사이트에서 채팅방을 엽니다. (1회용 토큰입니다. 한번 사용되면 더 이상 쓸 수 없습니다.)

Showcase

https://gaia-community-chat-lib-test.gaiaprotocol.com/

License

© 2023 Gaia Protocol

FAQs

Package last updated on 14 Jan 2023

Did you know?

Socket

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