#承認ボタン
1 messages · Page 1 of 1 (latest)
それ、たぶん DiscordのDM承認ボタン待ちではなく、Gateway側の device/operator scope 承認待ち になってます。Claw が「送った」と言ってるのは、承認UIの出し先を勘違いしている可能性が高いです 🦞
まずバージョン確認したいです:
openclaw --version
その上で、Gatewayを動かしているマシンでこれを見てください:
openclaw devices list
pending や scope-upgrade っぽい requestId が出ていたら:
openclaw devices approve <requestId>
その後に Gateway を再接続/再起動すると直ることが多いです:
openclaw gateway restart
もし devices list に何も出ない場合は、次にここを貼ってください(トークン類は自動で伏せられる想定です):
openclaw status --all
参考 docs: https://docs.openclaw.ai/gateway/operator-scopes / https://docs.openclaw.ai/help/faq
mfbc@mfbc-server:~$ openclaw --version
OpenClaw 2026.5.7 (eeef486)
mfbc@mfbc-server:~$ openclaw devices list
🦞 OpenClaw 2026.5.7 (eeef486)
I'll do the boring stuff while you dramatically stare at the logs like it's cinema.
│
gateway connect failed: GatewayClientRequestError: scope upgrade pending approval (requestId: 8e72bfe2-c049-42d3-99c5-b492aadab37c)
◇
Direct scope access failed; using local fallback.
Pending (1)
┌────────────────────────┬────────┬───────────┬──────────┬────────┬────────────┐
│ Request │ Device │ Requested │ Approved │ Age │ Status │
├────────────────────────┼────────┼───────────┼──────────┼────────┼────────────┤
│ 8e72bfe2-c049-42d3- │ bbbb3b │ roles: │ roles: │ just │ scope │
│ 99c5-b492aadab37c │ 96d9d0 │ operator; │ operator │ now │ upgrade, │
│ │ b2f7f9 │ scopes: │ ; │ │ repair │
│ │ 1e93de │ operator. │ scopes: │ │ │
│ │ 29bff8 │ pairing │ operator │ │ │
│ │ b22926 │ │ .read │ │ │
│ │ 7e0677 │ │ │ │ │
│ │ 26656a │ │ │ │ │
│ │ 6bd4b9 │ │ │ │ │
│ │ ca10a9 │ │ │ │ │
│ │ a778 │ │ │ │ │
└────────────────────────┴────────┴───────────┴──────────┴────────┴────────────┘
Paired (1)
┌──────────────────────────┬────────────┬────────────┬────────────┬────────────┐
│ Device │ Roles │ Scopes │ Tokens │ IP │
├──────────────────────────┼────────────┼────────────┼────────────┼────────────┤
│ bbbb3b96d9d0b2f7f91e93de │ operator │ operator. │ operator │
はい、これで原因ほぼ確定です。DMボタンは来なくて正常寄りで、今は 同じ operator device が operator.read だけ持っていて、追加で operator.pairing を要求している scope upgrade です。
まずこれを実行してください:
openclaw devices approve 8e72bfe2-c049-42d3-99c5-b492aadab37c
その後:
openclaw gateway restart
もし approve がまた scope upgrade pending approval や権限不足で失敗する場合は、今のCLIトークンが operator.read しかなくて自分では昇格承認できない状態です。その場合は Gateway の共有トークン/パスワード付きで承認するか、Control UI の Gateway Access で Gateway Token/Password を入れて接続し直す必要があります。
まずは上の approve を試して、エラーが出たらその出力を貼ってください。