Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Charlotte
Sharkey
Commits
015d1694
Unverified
Commit
015d1694
authored
3 years ago
by
syuilo
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Update README.md
parent
56958d23
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+5
-1
5 additions, 1 deletion
README.md
with
5 additions
and
1 deletion
README.md
+
5
−
1
View file @
015d1694
...
...
@@ -25,6 +25,8 @@ npm i misskey-js
todo
## API request
APIを利用する際は、利用するサーバーの情報とアクセストークンを与えて
`APIClient`
クラスのインスタンスを初期化し、そのインスタンスの
`request`
メソッドを呼び出してリクエストを行います。
```
ts
import
*
as
Misskey
from
'
misskey-js
'
;
...
...
@@ -36,9 +38,11 @@ const cli = new Misskey.api.APIClient({
const
meta
=
await
cli
.
request
(
'
meta
'
,
{
detail
:
true
});
```
`request`
の第一引数には呼び出すエンドポイント名、第二引数にはパラメータオブジェクトを渡します。レスポンスはPromiseとして返ります。
## Streaming
misskey.jsのストリーミングでは、二つのクラスが提供されます。
ひとつは、ストリーミングのコネクション自体を司る
`Stream`
クラスと、もうひとつはストリーミングのチャンネルの概念を表す
`Channel`
クラスです。
ひとつは、ストリーミングのコネクション自体を司る
`Stream`
クラスと、もうひとつはストリーミング
上
のチャンネルの概念を表す
`Channel`
クラスです。
ストリーミングを利用する際は、まず
`Stream`
クラスのインスタンスを初期化し、その後で
`Stream`
インスタンスのメソッドを利用して
`Channel`
クラスのインスタンスを取得する形になります。
```
ts
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment