#Telegram pairing fails + gateway auth issues on macOS 10.15 (Intel iMac)

1 messages Β· Page 1 of 1 (latest)

sonic sandal
#

Hi β€” I’m trying to run ClawdBot locally and pair a Telegram bot, but pairing never completes. I’ve already gone through the docs and logs in detail.

Goal
β€’ Run ClawdBot locally
β€’ Pair Telegram so messages can be sent/received

What happens instead
β€’ Telegram bot responds with a pairing code
β€’ clawdbot pairing approve telegram <CODE> returns:

No pending pairing request found for code

β€’    clawdbot status --all shows:

Gateway unreachable (unauthorized: gateway token missing)

β€’    Control UI logs repeatedly show token_missing

Environment
β€’ macOS 10.15.7 (Catalina)
β€’ iMac Late 2013 (Intel i5, HDD)
β€’ Node v22.22.0 (nvm)
β€’ ClawdBot 2026.1.24-3
β€’ Gateway: local, loopback (127.0.0.1:18789)

What I’ve tried
β€’ Manual + LaunchAgent gateway
β€’ Fresh pairing codes, immediate approval
β€’ Verified profile usage
β€’ Checked pairing list before approval
β€’ Reviewed gateway + error logs

Question

Is this a known limitation on macOS 10.15 / older Intel Macs, or am I missing a required gateway auth setup step?
Happy to move to a VPS if local reliability on this OS is not supported β€” just want to confirm.

Happy to paste logs if helpful. Appreciate any help.

polar cedarBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> βœ… Mark Solution

thin domeBOT
# sonic sandal Hi β€” I’m trying to run ClawdBot locally and pair a Telegram bot, but pairing nev...

Based on my research, this is a known gateway auth configuration issue, not a macOS 10.15 limitation. Here's what's happening and how to fix it:

Root Cause

The error "gateway token missing" and "No pending pairing request found" are connected problems:

  • Your CLI can't authenticate with the gateway because it doesn't have the token
  • The gateway needs proper auth config to track pairing requests

The Fix

  1. Set the correct token config key (this is the common mistake):

    # Wrong (deprecated/ignored): gateway.token
    # Correct: gateway.auth.token
    
  2. Force reinstall the gateway to sync configs:

#
   moltbot gateway install --force --profile ~/your-profile
  1. Get your gateway token:

    moltbot gateway status
    # Look for the token in the output, or check ~/.moltbot/your-profile/config.json
    
  2. Restart the gateway:

    moltbot gateway restart
    
  3. Try pairing again - now the CLI and gateway share the same auth context

#

Key Docs

If Still Stuck

Run moltbot gateway status --all and check if Config (cli) and Config (service) match - they often don't when you've edited config while the service was running. The --force reinstall fixes this.

Your older Intel iMac can absolutely run this - it's a config issue, not a hardware limitation. 🦐