@@ -242,14 +242,15 @@ That's it! You have a working AI assistant in 2 minutes.
242242
243243## 💬 Chat Apps
244244
245- Talk to your picoclaw through Telegram, Discord, or DingTalk
245+ Talk to your picoclaw through Telegram, Discord, DingTalk, or LINE
246246
247- | Channel | Setup |
248- | ------------ | -------------------------- |
249- | ** Telegram** | Easy (just a token) |
250- | ** Discord** | Easy (bot token + intents) |
251- | ** QQ** | Easy (AppID + AppSecret) |
252- | ** DingTalk** | Medium (app credentials) |
247+ | Channel | Setup |
248+ | ------------ | ---------------------------------- |
249+ | ** Telegram** | Easy (just a token) |
250+ | ** Discord** | Easy (bot token + intents) |
251+ | ** QQ** | Easy (AppID + AppSecret) |
252+ | ** DingTalk** | Medium (app credentials) |
253+ | ** LINE** | Medium (credentials + webhook URL) |
253254
254255<details >
255256<summary ><b >Telegram</b > (Recommended)</summary >
@@ -399,6 +400,56 @@ picoclaw gateway
399400
400401</details >
401402
403+ <details >
404+ <summary ><b >LINE</b ></summary >
405+
406+ ** 1. Create a LINE Official Account**
407+
408+ - Go to [ LINE Developers Console] ( https://developers.line.biz/ )
409+ - Create a provider → Create a Messaging API channel
410+ - Copy ** Channel Secret** and ** Channel Access Token**
411+
412+ ** 2. Configure**
413+
414+ ``` json
415+ {
416+ "channels" : {
417+ "line" : {
418+ "enabled" : true ,
419+ "channel_secret" : " YOUR_CHANNEL_SECRET" ,
420+ "channel_access_token" : " YOUR_CHANNEL_ACCESS_TOKEN" ,
421+ "webhook_host" : " 0.0.0.0" ,
422+ "webhook_port" : 18791 ,
423+ "webhook_path" : " /webhook/line" ,
424+ "allow_from" : []
425+ }
426+ }
427+ }
428+ ```
429+
430+ ** 3. Set up Webhook URL**
431+
432+ LINE requires HTTPS for webhooks. Use a reverse proxy or tunnel:
433+
434+ ``` bash
435+ # Example with ngrok
436+ ngrok http 18791
437+ ```
438+
439+ Then set the Webhook URL in LINE Developers Console to ` https://your-domain/webhook/line ` and enable ** Use webhook** .
440+
441+ ** 4. Run**
442+
443+ ``` bash
444+ picoclaw gateway
445+ ```
446+
447+ > In group chats, the bot responds only when @mentioned . Replies quote the original message.
448+
449+ > ** Docker Compose** : Add ` ports: ["18791:18791"] ` to the ` picoclaw-gateway ` service to expose the webhook port.
450+
451+ </details >
452+
402453## <img src =" assets/clawdchat-icon.png " width =" 24 " height =" 24 " alt =" ClawdChat " > Join the Agent Social Network
403454
404455Connect Picoclaw to the Agent Social Network simply by sending a single message via the CLI or any integrated Chat App.
0 commit comments