mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-22 08:53:49 +01:00
New translations webhook.md (English)
This commit is contained in:
parent
02322969e3
commit
cfbebc5783
@ -1,11 +1,15 @@
|
|||||||
# Webhook
|
# Webhook
|
||||||
|
|
||||||
:::tip
|
:::tip
|
||||||
|
|
||||||
バージョン 12.109.0 以降の機能です。
|
バージョン 12.109.0 以降の機能です。
|
||||||
|
|
||||||
:::
|
:::
|
||||||
|
|
||||||
:::warning
|
:::warning
|
||||||
|
|
||||||
実験的な機能であるため、動作が不安定だったり今後仕様が変更される可能性があります。
|
実験的な機能であるため、動作が不安定だったり今後仕様が変更される可能性があります。
|
||||||
|
|
||||||
:::
|
:::
|
||||||
|
|
||||||
MisskeyにはWebhookが用意されています。Webhookを利用すると、Misskey上の様々なイベントをリアルタイムに受け取ることが可能です。
|
MisskeyにはWebhookが用意されています。Webhookを利用すると、Misskey上の様々なイベントをリアルタイムに受け取ることが可能です。
|
||||||
@ -57,7 +61,15 @@ Webhookは管理画面から個別にアクティブ状態を設定でき、一
|
|||||||
|
|
||||||
### follow
|
### follow
|
||||||
|
|
||||||
自分が誰かをフォローした際に発生します。
|
<MkSchemaViewerItemObject :schema="{
|
||||||
|
type: 'object',
|
||||||
|
properties: {
|
||||||
|
user: {
|
||||||
|
$ref: 'misskey://User',
|
||||||
|
description: 'フォローを行ったユーザー',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}"/>
|
||||||
|
|
||||||
<MkSchemaViewerItemObject :schema="{
|
<MkSchemaViewerItemObject :schema="{
|
||||||
type: 'object',
|
type: 'object',
|
||||||
@ -71,7 +83,15 @@ properties: {
|
|||||||
|
|
||||||
### followed
|
### followed
|
||||||
|
|
||||||
自分が誰かからフォローされた際に発生します。
|
<MkSchemaViewerItemObject :schema="{
|
||||||
|
type: 'object',
|
||||||
|
properties: {
|
||||||
|
user: {
|
||||||
|
$ref: 'misskey://User',
|
||||||
|
description: 'フォロー解除したユーザー',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}"/>
|
||||||
|
|
||||||
<MkSchemaViewerItemObject :schema="{
|
<MkSchemaViewerItemObject :schema="{
|
||||||
type: 'object',
|
type: 'object',
|
||||||
@ -85,7 +105,15 @@ properties: {
|
|||||||
|
|
||||||
### unfollow
|
### unfollow
|
||||||
|
|
||||||
自分が誰かをフォロー解除した際に発生します。
|
<MkSchemaViewerItemObject :schema="{
|
||||||
|
type: 'object',
|
||||||
|
properties: {
|
||||||
|
note: {
|
||||||
|
$ref: 'misskey://Note',
|
||||||
|
description: '作成されたノート',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}"/>
|
||||||
|
|
||||||
<MkSchemaViewerItemObject :schema="{
|
<MkSchemaViewerItemObject :schema="{
|
||||||
type: 'object',
|
type: 'object',
|
||||||
@ -99,7 +127,15 @@ properties: {
|
|||||||
|
|
||||||
### note
|
### note
|
||||||
|
|
||||||
自分がノートを投稿した際に発生します。
|
<MkSchemaViewerItemObject :schema="{
|
||||||
|
type: 'object',
|
||||||
|
properties: {
|
||||||
|
note: {
|
||||||
|
$ref: 'misskey://Note',
|
||||||
|
description: '返信',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}"/>
|
||||||
|
|
||||||
<MkSchemaViewerItemObject :schema="{
|
<MkSchemaViewerItemObject :schema="{
|
||||||
type: 'object',
|
type: 'object',
|
||||||
@ -113,7 +149,15 @@ properties: {
|
|||||||
|
|
||||||
### reply
|
### reply
|
||||||
|
|
||||||
自分のノートに返信された際に発生します。
|
<MkSchemaViewerItemObject :schema="{
|
||||||
|
type: 'object',
|
||||||
|
properties: {
|
||||||
|
note: {
|
||||||
|
$ref: 'misskey://Note',
|
||||||
|
description: 'Renote',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}"/>
|
||||||
|
|
||||||
<MkSchemaViewerItemObject :schema="{
|
<MkSchemaViewerItemObject :schema="{
|
||||||
type: 'object',
|
type: 'object',
|
||||||
@ -127,7 +171,15 @@ properties: {
|
|||||||
|
|
||||||
### renote
|
### renote
|
||||||
|
|
||||||
自分のノートがRenoteされた際に発生します。
|
<MkSchemaViewerItemObject :schema="{
|
||||||
|
type: 'object',
|
||||||
|
properties: {
|
||||||
|
note: {
|
||||||
|
$ref: 'misskey://Note',
|
||||||
|
description: 'メンションを含むノート',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}"/>
|
||||||
|
|
||||||
<MkSchemaViewerItemObject :schema="{
|
<MkSchemaViewerItemObject :schema="{
|
||||||
type: 'object',
|
type: 'object',
|
||||||
|
Loading…
Reference in New Issue
Block a user