New translations webhook.md (Polish)

This commit is contained in:
かっこかり 2023-12-31 13:26:11 +09:00
parent 0a7793add0
commit ac4e2c534e

View File

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