node-red-contrib-line-messaging-api 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ AdminタブからInstall
|
|
|
19
19
|
LINE Botの設定(チャンネルシークレット、チャンネルアクセストークン)を設定しておく裏側のノードです。
|
|
20
20
|
このノードはエディターには表示されずReplyやPushなどのノードの設定UIからアクセスできます。
|
|
21
21
|
|
|
22
|
-
> 
|
|
23
23
|
|
|
24
24
|
作成したLINE Botの設定は別のReplyノードやPushノードで使いまわせます。
|
|
25
25
|
|
|
@@ -85,6 +85,17 @@ return msg;
|
|
|
85
85
|
> 
|
|
86
86
|
> https://developers.line.biz/ja/reference/messaging-api/#display-a-loading-indicator
|
|
87
87
|
|
|
88
|
+
### getProfile
|
|
89
|
+
|
|
90
|
+
ユーザーの情報を取得します。
|
|
91
|
+
https://developers.line.biz/ja/reference/messaging-api/#get-profile
|
|
92
|
+
|
|
93
|
+
### getBotInfo
|
|
94
|
+
|
|
95
|
+
BOTの情報を取得します。
|
|
96
|
+
|
|
97
|
+
https://developers.line.biz/ja/reference/messaging-api/#get-bot-info
|
|
98
|
+
|
|
88
99
|
### LINE Notify (2024/12/22追記: API自体が終了するため廃止予定です。)
|
|
89
100
|
|
|
90
101
|
> 
|