bkeepers - Can someone help me understand how t...

Can someone help me understand how to authorize http requests to node-red? I'm trying to create an http in node that accepts data from a mobile app, but I keep getting 401 response. I created a device token (https://signalk.org/specification/1.7.0/doc/access_requests.html), granted it read/write, and am passing it in the Authorization header, but still get a 401.
$ curl http://pi.local:3000/signalk/v1/requests/<UUID>
{"state":"COMPLETED","requestId":"<UUID>","accessRequest":{"permission":"APPROVED","token":"<TOKEN>"},"statusCode":200,"href":"/signalk/v1/requests/<UUID>","ip":"::ffff:192.168.50.50"}

$ curl -i -XPOST -H "Authorization: Bearer <TOKEN>" http://pi.local:3000/plugins/signalk-node-red/redApi/sensor-log
HTTP/1.1 401 Unauthorized
X-Powered-By: Express
Access-Control-Allow-Origin: *
Access-Control-Allow-Credentials: true
Content-Type: text/plain; charset=utf-8
Content-Length: 91
ETag: W/"5b-bSTNTfsTBK63t+zB7jLUN4BZYbE"
Vary: Accept-Encoding
Date: Thu, 27 Feb 2025 21:54:04 GMT
Connection: keep-alive
Keep-Alive: timeout=5

You do not have permission to view this resource, <a href='/admin/#/login'>Please Login</a>
$ curl http://pi.local:3000/signalk/v1/requests/<UUID>
{"state":"COMPLETED","requestId":"<UUID>","accessRequest":{"permission":"APPROVED","token":"<TOKEN>"},"statusCode":200,"href":"/signalk/v1/requests/<UUID>","ip":"::ffff:192.168.50.50"}

$ curl -i -XPOST -H "Authorization: Bearer <TOKEN>" http://pi.local:3000/plugins/signalk-node-red/redApi/sensor-log
HTTP/1.1 401 Unauthorized
X-Powered-By: Express
Access-Control-Allow-Origin: *
Access-Control-Allow-Credentials: true
Content-Type: text/plain; charset=utf-8
Content-Length: 91
ETag: W/"5b-bSTNTfsTBK63t+zB7jLUN4BZYbE"
Vary: Accept-Encoding
Date: Thu, 27 Feb 2025 21:54:04 GMT
Connection: keep-alive
Keep-Alive: timeout=5

You do not have permission to view this resource, <a href='/admin/#/login'>Please Login</a>
4 Replies
Scott Bender
Scott Bender2mo ago
That looks perfect Can you try just doing a GET on /plugins/signalk-node-red
Brandon Keepers
Brandon KeepersOP2mo ago
401 with a GET as well
Scott Bender
Scott Bender2mo ago
Oh! Give that id admin access
Brandon Keepers
Brandon KeepersOP2mo ago
That did it, thanks @Scott Bender!

Did you find this page helpful?