@@ -239,14 +239,15 @@ That's it! You have a working AI assistant in 2 minutes.
239239
240240## 💬 Chat Apps
241241
242- Talk to your picoclaw through Telegram, Discord, or DingTalk
242+ Talk to your picoclaw through Telegram, Discord, DingTalk, or LINE
243243
244- | Channel | Setup |
245- | ------------ | -------------------------- |
246- | ** Telegram** | Easy (just a token) |
247- | ** Discord** | Easy (bot token + intents) |
248- | ** QQ** | Easy (AppID + AppSecret) |
249- | ** DingTalk** | Medium (app credentials) |
244+ | Channel | Setup |
245+ | ------------ | ---------------------------------- |
246+ | ** Telegram** | Easy (just a token) |
247+ | ** Discord** | Easy (bot token + intents) |
248+ | ** QQ** | Easy (AppID + AppSecret) |
249+ | ** DingTalk** | Medium (app credentials) |
250+ | ** LINE** | Medium (credentials + webhook URL) |
250251
251252<details >
252253<summary ><b >Telegram</b > (Recommended)</summary >
@@ -334,8 +335,8 @@ picoclaw gateway
334335
335336** 1. Create a bot**
336337
337- * Go to [ QQ Open Platform] ( https://connect .qq.com/ )
338- * Create an application → Get ** AppID** and ** AppSecret**
338+ - Go to [ QQ Open Platform] ( https://q .qq.com/# )
339+ - Create an application → Get ** AppID** and ** AppSecret**
339340
340341** 2. Configure**
341342
@@ -396,6 +397,56 @@ picoclaw gateway
396397
397398</details >
398399
400+ <details >
401+ <summary ><b >LINE</b ></summary >
402+
403+ ** 1. Create a LINE Official Account**
404+
405+ - Go to [ LINE Developers Console] ( https://developers.line.biz/ )
406+ - Create a provider → Create a Messaging API channel
407+ - Copy ** Channel Secret** and ** Channel Access Token**
408+
409+ ** 2. Configure**
410+
411+ ``` json
412+ {
413+ "channels" : {
414+ "line" : {
415+ "enabled" : true ,
416+ "channel_secret" : " YOUR_CHANNEL_SECRET" ,
417+ "channel_access_token" : " YOUR_CHANNEL_ACCESS_TOKEN" ,
418+ "webhook_host" : " 0.0.0.0" ,
419+ "webhook_port" : 18791 ,
420+ "webhook_path" : " /webhook/line" ,
421+ "allow_from" : []
422+ }
423+ }
424+ }
425+ ```
426+
427+ ** 3. Set up Webhook URL**
428+
429+ LINE requires HTTPS for webhooks. Use a reverse proxy or tunnel:
430+
431+ ``` bash
432+ # Example with ngrok
433+ ngrok http 18791
434+ ```
435+
436+ Then set the Webhook URL in LINE Developers Console to ` https://your-domain/webhook/line ` and enable ** Use webhook** .
437+
438+ ** 4. Run**
439+
440+ ``` bash
441+ picoclaw gateway
442+ ```
443+
444+ > In group chats, the bot responds only when @mentioned . Replies quote the original message.
445+
446+ > ** Docker Compose** : Add ` ports: ["18791:18791"] ` to the ` picoclaw-gateway ` service to expose the webhook port.
447+
448+ </details >
449+
399450## <img src =" assets/clawdchat-icon.png " width =" 24 " height =" 24 " alt =" ClawdChat " > Join the Agent Social Network
400451
401452Connect Picoclaw to the Agent Social Network simply by sending a single message via the CLI or any integrated Chat App.
0 commit comments