Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions es/x-api/activity/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Los eventos de Post se activan cuando un usuario crea o elimina un Post.
| --- | --- | --- |
| `post.create` | Se activa cuando un usuario crea un Post | `user_id` |
| `post.delete` | Se activa cuando un usuario elimina un Post | `user_id` |
| `post.mention.create` | Se activa cuando alguien @menciona al usuario filtrado en un Post | `user_id` |

<Note>
**Eventos de Post mediante XAA vs Filtered Stream:** La X Activity API admite los eventos `post.create` y `post.delete`. Suscríbete por `user_id` para recibir notificaciones en tiempo real cuando los usuarios creen o eliminen Posts.
Expand Down Expand Up @@ -124,6 +125,16 @@ Para estos eventos públicos, puedes crear suscripciones especificando el ID de

Los eventos privados son actividades que requieren el consentimiento explícito del usuario mediante autenticación OAuth. El usuario debe autenticarse a través de X y dar permiso explícito a una app de desarrollador para acceder a estos eventos.

**Eventos privados actuales:**
- Likes (`like.create`)
- Chat cifrado recibido (`chat.received`)
- Chat cifrado enviado (`chat.sent`)
- DM recibido (`dm.received`)
- DM enviado (`dm.sent`)
- DM leído (`dm.read`)
- Indicador de escritura de DM (`dm.indicate_typing`)
- Menciones en Posts (`post.mention.create`)

**Requisitos de autenticación para eventos privados:**
- El usuario debe autenticar tu aplicación mediante OAuth 2.0
- Tu aplicación debe obtener los scopes de OAuth correspondientes
Expand All @@ -136,9 +147,9 @@ La X Activity API tiene distintos límites de suscripción según el nivel de tu

| Nivel del paquete | Suscripciones máximas |
| --- | --- |
| Autoservicio | 1000 |
| Enterprise | 50,000 |
| Partner | 100,000 |
| Autoservicio | 1,500 |
| Enterprise | 75,000 |
| Partner | 150,000 |

## Endpoints

Expand Down
17 changes: 14 additions & 3 deletions ja/x-api/activity/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Post イベントは、ユーザーが Post を作成または削除したとき
| --- | --- | --- |
| `post.create` | ユーザーが Post を作成したときに発火します | `user_id` |
| `post.delete` | ユーザーが Post を削除したときに発火します | `user_id` |
| `post.mention.create` | フィルター対象のユーザーが Post 内で @メンションされたときに発火します | `user_id` |

<Note>
**XAA 経由の Post イベント vs Filtered Stream:** X Activity API は `post.create` および `post.delete` イベントをサポートしています。`user_id` でサブスクライブすることで、ユーザーが Post を作成または削除した際にリアルタイムで通知を受け取れます。
Expand Down Expand Up @@ -124,6 +125,16 @@ X Activity API は、X アプリと同等の取り扱いとして、**パブリ

プライベートイベントは、OAuth 認証を通じてユーザーの明示的な同意が必要なアクティビティです。ユーザーは X 経由で認証を行い、これらのイベントへのアクセスを開発者アプリに対して明示的に許可する必要があります。

**現在のプライベートイベント:**
- いいね (`like.create`)
- 暗号化チャット受信 (`chat.received`)
- 暗号化チャット送信 (`chat.sent`)
- DM 受信 (`dm.received`)
- DM 送信 (`dm.sent`)
- DM 既読 (`dm.read`)
- DM 入力中インジケーター (`dm.indicate_typing`)
- Post メンション (`post.mention.create`)

**プライベートイベントの認証要件:**
- ユーザーは OAuth 2.0 を介してアプリケーションを認証する必要があります
- アプリケーションは適切な OAuth スコープを取得する必要があります
Expand All @@ -136,9 +147,9 @@ X Activity API には、アカウントティアに応じて異なるサブス

| パッケージティア | サブスクリプションの最大数 |
| --- | --- |
| セルフサーブ | 1000 |
| Enterprise | 50,000 |
| Partner | 100,000 |
| セルフサーブ | 1,500 |
| Enterprise | 75,000 |
| Partner | 150,000 |

## エンドポイント

Expand Down
17 changes: 14 additions & 3 deletions ko/x-api/activity/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Post 이벤트는 사용자가 Post를 생성하거나 삭제할 때 트리거
| --- | --- | --- |
| `post.create` | 사용자가 Post를 생성할 때 발생 | `user_id` |
| `post.delete` | 사용자가 Post를 삭제할 때 발생 | `user_id` |
| `post.mention.create` | 누군가가 Post에서 필터링된 사용자를 @멘션할 때 발생 | `user_id` |

<Note>
**XAA를 통한 Post 이벤트 vs Filtered Stream:** X Activity API는 `post.create` 및 `post.delete` 이벤트를 지원합니다. `user_id`로 구독하여 사용자가 Post를 생성하거나 삭제할 때 실시간 알림을 받을 수 있습니다.
Expand Down Expand Up @@ -124,6 +125,16 @@ X Activity API는 아래에 설명된 대로 X 앱과 동등하게 **공개 이

비공개 이벤트는 OAuth 인증을 통해 사용자의 명시적 동의가 필요한 활동입니다. 사용자는 X를 통해 인증하고 이러한 이벤트에 접근할 수 있도록 개발자 앱에 명시적인 권한을 부여해야 합니다.

**현재 비공개 이벤트:**
- 좋아요 (`like.create`)
- 암호화된 채팅 수신 (`chat.received`)
- 암호화된 채팅 전송 (`chat.sent`)
- DM 수신 (`dm.received`)
- DM 전송 (`dm.sent`)
- DM 읽음 (`dm.read`)
- DM 입력 표시 (`dm.indicate_typing`)
- Post 멘션 (`post.mention.create`)

**비공개 이벤트에 대한 인증 요구사항:**
- 사용자가 OAuth 2.0을 통해 애플리케이션을 인증해야 합니다
- 애플리케이션이 적절한 OAuth 스코프를 획득해야 합니다
Expand All @@ -136,9 +147,9 @@ X Activity API는 계정 등급에 따라 서로 다른 구독 한도를 가집

| 패키지 등급 | 최대 구독 수 |
| --- | --- |
| 셀프서브 | 1000 |
| Enterprise | 50,000 |
| Partner | 100,000 |
| 셀프서브 | 1,500 |
| Enterprise | 75,000 |
| Partner | 150,000 |

## 엔드포인트

Expand Down
17 changes: 14 additions & 3 deletions pt/x-api/activity/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Os eventos de Post são acionados quando um usuário cria ou exclui um Post.
| --- | --- | --- |
| `post.create` | Disparado quando um usuário cria um Post | `user_id` |
| `post.delete` | Disparado quando um usuário exclui um Post | `user_id` |
| `post.mention.create` | Disparado quando alguém @menciona o usuário filtrado em um Post | `user_id` |

<Note>
**Eventos de Post via XAA vs Filtered Stream:** A X Activity API oferece suporte aos eventos `post.create` e `post.delete`. Assine por `user_id` para receber notificações em tempo real quando os usuários criarem ou excluírem Posts.
Expand Down Expand Up @@ -124,6 +125,16 @@ Para esses eventos públicos, você pode criar assinaturas especificando o user

Os eventos privados são atividades que exigem consentimento explícito do usuário por meio de autenticação OAuth. Um usuário precisa autenticar-se via X e conceder permissão explícita a um app de desenvolvedor para acessar esses eventos.

**Eventos privados atuais:**
- Curtidas (`like.create`)
- Chat criptografado recebido (`chat.received`)
- Chat criptografado enviado (`chat.sent`)
- DM recebida (`dm.received`)
- DM enviada (`dm.sent`)
- DM lida (`dm.read`)
- Indicador de digitação de DM (`dm.indicate_typing`)
- Menções em Posts (`post.mention.create`)

**Requisitos de autenticação para eventos privados:**
- O usuário precisa autenticar a sua aplicação via OAuth 2.0
- A sua aplicação precisa obter os escopos OAuth apropriados
Expand All @@ -136,9 +147,9 @@ A X Activity API tem diferentes limites de assinatura com base no nível da sua

| Nível do pacote | Máximo de assinaturas |
| --- | --- |
| Self-serve | 1000 |
| Enterprise | 50.000 |
| Partner | 100.000 |
| Self-serve | 1.500 |
| Enterprise | 75.000 |
| Partner | 150.000 |

## Endpoints

Expand Down