discord/embedded-app-sdk
Fork: 179 Star: 1267 (更新于 2024-11-20 08:04:10)
license: MIT
Language: TypeScript .
🚀 The Discord Embedded App SDK lets you build rich, multiplayer experiences as Activities inside Discord.
最后发布版本: v1.5.0 ( 2024-10-02 04:14:07)
@discord/embedded-app-sdk
The Embedded App SDK enables you to build rich, multiplayer experiences inside Discord.
Activities are multiplayer games and social experiences in Discord. An Activity is a web application hosted in an iframe that can run within the Discord client on desktop, web, or mobile. The Embedded App SDK handles the communication between Discord and your iframed application.
Read more about building Discord Activities with the Embedded App SDK on https://discord.com/developers/docs/activities/overview.
Resources
- Embedded App SDK Docs - Get familiar with the Embedded App SDK
- Activity Examples - Explore examples of Discord Activities
-
Technical chat on Discord - Join us and other devs at DDevs at
#activities-dev-help
Installing this package
npm install @discord/embedded-app-sdk
Usage
To use the SDK, import it into your project and construct a new instance of the DiscordSDK class.
Below is a minimal example of setting up the SDK.
Visit https://github.com/discord/embedded-app-sdk-examples/tree/main/discord-activity-starter for a complete example application. See more info on environment variables (YOUR_OAUTH2_CLIENT_ID
, etc...) here.
import {DiscordSDK} from '@discord/embedded-app-sdk';
const discordSdk = new DiscordSDK(YOUR_OAUTH2_CLIENT_ID);
async function setup() {
// Wait for READY payload from the discord client
await discordSdk.ready();
// Pop open the OAuth permission modal and request for access to scopes listed in scope array below
const {code} = await discordSdk.commands.authorize({
client_id: YOUR_OAUTH2_CLIENT_ID,
response_type: 'code',
state: '',
prompt: 'none',
scope: ['identify', 'applications.commands'],
});
// Retrieve an access_token from your application's server
const response = await fetch('/.proxy/api/token', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
code,
}),
});
const {access_token} = await response.json();
// Authenticate with Discord client (using the access_token)
auth = await discordSdk.commands.authenticate({
access_token,
});
}
SDK development
Developing a new feature or patching a bug on the SDK? Check out this guide to learn how to set up your local dev environment.
Discord Developer Terms of Service & Developer Policy
Please note that while this SDK is licensed under the MIT License, the Discord Developer Terms of Service and Discord Developer Policy otherwise still apply to you and the applications you develop utilizing this SDK.
最近版本更新:(数据更新于 2024-10-05 10:41:20)
2024-10-02 04:14:07 v1.5.0
2024-09-26 22:12:57 v1.4.3
2024-08-14 04:06:49 v1.4.2
2024-07-31 01:21:55 v1.4.1
2024-07-11 00:28:19 v1.4.0
2024-06-27 00:03:16 v1.3.0
2024-04-24 01:43:42 v1.2.0
2024-04-04 12:08:29 v1.1.2
2024-04-02 22:04:47 v1.1.1
2024-04-02 04:34:37 v1.1.0
discord/embedded-app-sdk同语言 TypeScript最近更新仓库
2024-11-22 01:36:46 twentyhq/twenty
2024-11-21 16:58:07 labring/FastGPT
2024-11-21 16:14:54 RSSNext/Follow
2024-11-21 14:41:29 continuedev/continue
2024-11-21 00:40:00 immich-app/immich
2024-11-20 19:46:23 CopilotKit/CopilotKit