Complete the Authorization
then it should work
[{"id":"7aab978c3ba7bde7","type":"inject","z":"15cdbf1d258ebb57","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":140,"y":340,"wires":[["31434da3af04fa94"]]},{"id":"22b3a08164c63aba","type":"debug","z":"15cdbf1d258ebb57","name":"debug 2","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":480,"y":340,"wires":[]},{"id":"31434da3af04fa94","type":"http request","z":"15cdbf1d258ebb57","name":"","method":"GET","ret":"txt","paytoqs":"ignore","url":"http://localhost:1880/diagnostics","tls":"","persist":false,"proxy":"","insecureHTTPParser":false,"authType":"","senderr":false,"headers":[{"keyType":"other","keyValue":"Accept","valueType":"other","valueValue":"application/json"},{"keyType":"other","keyValue":"Authorization","valueType":"other","valueValue":"Bearer [token]"}],"x":310,"y":340,"wires":[["22b3a08164c63aba"]]}]
Full version:
[{"id":"7aab978c3ba7bde7","type":"inject","z":"15cdbf1d258ebb57","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"{\"client_id\":\"node-red-admin\",\"grant_type\":\"password\",\"scope\":\"*\",\"username\":\"admin\",\"password\":\"password\"}","payloadType":"json","x":130,"y":420,"wires":[["23ad1faed6ab4680"]]},{"id":"22b3a08164c63aba","type":"debug","z":"15cdbf1d258ebb57","name":"debug 2","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":800,"y":420,"wires":[]},{"id":"31434da3af04fa94","type":"http request","z":"15cdbf1d258ebb57","name":"","method":"GET","ret":"txt","paytoqs":"ignore","url":"http://localhost:1880/diagnostics","tls":"","persist":false,"proxy":"","insecureHTTPParser":false,"authType":"","senderr":false,"headers":[{"keyType":"other","keyValue":"Accept","valueType":"other","valueValue":"application/json"},{"keyType":"other","keyValue":"Authorization","valueType":"msg","valueValue":"payload"}],"x":630,"y":420,"wires":[["22b3a08164c63aba"]]},{"id":"23ad1faed6ab4680","type":"http request","z":"15cdbf1d258ebb57","name":"","method":"POST","ret":"txt","paytoqs":"ignore","url":"http://localhost:1880/auth/token","tls":"","persist":false,"proxy":"","insecureHTTPParser":false,"authType":"","senderr":false,"headers":[],"x":290,"y":420,"wires":[["ff30f98494e9198a"]]},{"id":"ff30f98494e9198a","type":"function","z":"15cdbf1d258ebb57","name":"function 1","func":"msg.payload = \"Bearer \" + JSON.parse(msg.payload)[\"access_token\"];\nreturn msg;","outputs":1,"timeout":0,"noerr":0,"initialize":"","finalize":"","libs":[],"x":460,"y":420,"wires":[["31434da3af04fa94"]]}]