-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
37 changed files
with
154 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
//communityサーバーへの参加申請を承認する | ||
// POST /api/v2/server/activity/accept/community | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
// body: { userid: string, communityid: string } | ||
// -> { status: boolean, message: string } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
//友達リクエストを承認する | ||
// POST /api/v2/server/activity/accept/friend | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
// body: { friendid: string, userid: string } | ||
// -> { status: boolean, message: string } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
//グループの参加を承認する | ||
// POST /api/v2/server/activity/accept/group | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
// body: { groupid: string, userid: string } | ||
// -> { status: boolean, message: string } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//ユーザーをブロックしたことを通知する | ||
// POST /api/v2/server/activity/block/user | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
// body: { userid: string, username: string } |
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//メッセージを削除するapi | ||
//POST /api/v2/server/activity/delete/message | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
// body: { messageid: string, userid: string } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//communityを通報する | ||
// POST /api/v2/server/activity/flag/community | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
// body: { communityid: string, userid: string, reason: string } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
//グループを通報するapi | ||
//POST /api/v2/server/activity/flag/group | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
// body: { groupid: string, userid: string, reason: string } | ||
// -> { status: boolean, message: string } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//ユーザーを通報 | ||
// POST /api/v2/server/activity/flag/user | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
// body: { userid: string, reason: string, messageid: string } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//リクエストを無視したことを通知 | ||
// POST /api/v2/server/activity/ignore/friend | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
// body: { friendid: string, userid: string } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
//グループの招待を無視する | ||
// POST /api/v2/server/activity/ignore/group | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
// body: { groupid: string, userid: string } | ||
// -> { status: boolean, message: string } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//グループチャットに友達を招待 | ||
// POST /api/v2/server/activity/invite/group | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
// body: { groupid: string, userid: string, friendid: string } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//公開されたcommunityサーバーに参加する | ||
// POST /api/v2/server/activity/join/community | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
// body: { communityid: string, userid: string } |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
//メッセージを読んだことをサーバーに通知する | ||
// POST /api/v2/server/activity/read/message | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
// body: { messageid: string, userid: string } | ||
// -> { status: boolean, message: string } |
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//communityサーバーへ参加申請を送信する | ||
// POST /api/v2/server/activity/join/request/community | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
// body: { userid: string, communityid: string } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//友達申請を申請 | ||
// POST: /api/v2/server/activity/request/friend | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
// body: { userid: string, friendid: string } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//音声メッセージを送信したことを受け取る | ||
// POST /api/v2/server/activity/talk/audio | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
// body: { messageid: string, userid: string, roomid: string } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//画像メッセージを送信したことを受け取る | ||
// POST /api/v2/server/activity/talk/image | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
// body: { messageid: string, userid: string, roomid: string } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//テキストメッセージを送信したことを受け取る | ||
// POST /api/v2/server/activity/talk/text | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
// body: { messageid: string, userid: string, roomid: string, text: string } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//動画メッセージを送信したことを受け取る | ||
// POST /api/v2/server/activity/talk/video | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
// body: { messageid: string, userid: string, roomid: string} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
//プロフィールを変更したことを通知 | ||
// POST /api/v2/server/activity/update/profile | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
// body: { userid: string } | ||
// -> { status: boolean, message: string } |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
//トークデータを取得する | ||
// GET /api/v2/server/information/talk/:id | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
//ある時間以前のトークデータを取得する | ||
// body: { roomid: string, userid: string, limit: number, before: number } |
Empty file.
Empty file.
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
//アイコンを取得する | ||
//POST /api/v2/server/information/users/icon | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
// body: { userid: string, friendid: string } | ||
// -> { status: boolean, icon: file } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
//ユーザーのプロフィールを取得 | ||
//POST /api/v2/server/information/users/profile | ||
//POST /api/v2/server/information/users/profile | ||
// { host: string, body: string } | ||
// bodyは秘密鍵で署名されたJSON | ||
// body: { userid: string, friendid: string } | ||
// -> { status: boolean, profile: { name: string, icon: string, description: string, birthday: string} } |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters