@peakys/chatwork-api
v1.0.9
Published
Chatwork API https://developer.chatwork.com/reference
Maintainers
Readme
chatwork-api
Chatwork API をパッケージ化したものです。
インストール
npm install @peakys/chatwork-apiimport chatwork from '@peakys/chatwork-api'使い方
例えば、エンドポイントhttps://api.chatwork.com/v2/rooms/{room_id}/messages/{message_id}に対し、getメソッドを実行したい場合は次のようにする。
await chatwork(APIKEY).rooms(roomId).messages(messageId).get()get()メソッドの引数にはクエリパラメータを渡すことができ、URI の?の後に続く式を文字列として渡す。
例えば、エンドポイントhttps://api.chatwork.com/v2/rooms/{room_id}/messagesに対し、postメソッドを実行したい場合は次のようにする。
await chatwork(APIKEY).rooms(roomId).messages().post(body)post(), put(), delete() メソッドには、普通 body が引数として渡される。
