2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

RuruCun個人開発Advent Calendar 2023

Day 17

MisskeyでBotを作ってみる

Posted at

参考

アクセストークンの発行

Misskeyの設定>APIから、アクセストークンの発行を押し、必要な権限を設定して、アクセストークンを発行します。

image.png

今回は「ノートの作成・削除」の権限のみ付与しておきます。

image.png

アクセストークンが発行されるので、コピーして保存しておきます。

image.png

参考

Node.js環境で叩いてみる

使いたいMisskeyのapi-docを確認してみます。

例: https://misskey.io/api-doc

今回はツイート(notes/create)をしてみます。
https://misskey.io/api-doc#tag/notes/operation/notes/conversation

js/index.js
  const url = "https://misskey.io/api/notes/create";
  const data = {
    i: "さっき保存したアクセストークン",
    text: "ツイートしたい内容",
  };

  await fetch(url, {
    method: "POST",
    headers: {
      "Content-Type": "application/json",
    },
    body: JSON.stringify(data),
  });

$ node index.js

これで無事、MisskeyにNode.js経由でツイートできるはずです。

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?