Authenticate with FarmOS:
This flow should provide a login to FarmOS. It also keeps you logged in for some time.
It would need the installation of
node-red-dashboard and maybe
node-red-contrib-oauth2
Edit:
node-red-contrib-credentials is also needed.

The
node must be setup with the FarmOS URL of your instance.
Then you should be able to log in from the dashboard in Node Red.
If success you will get a notice of “Access Granted”

[
{
"id": "cb009280587b2d34",
"type": "tab",
"label": "FarmOS authenticate",
"disabled": false,
"info": "",
"env": []
},
{
"id": "54e5e55c099a85e8",
"type": "function",
"z": "cb009280587b2d34",
"name": "Save OAuth Token",
"func": "if (msg.payload.access_token) {\n var token = msg.payload.access_token;\n var refresh = msg.payload.refresh_token;\n global.set('token', token);\n flow.set('refresh', refresh);\n Time = new Date()\n msg.payload = \"Access Granted \" + Time;\n \n} else {\n msg.payload = \"Authorization error.\";\n}\nreturn msg;",
"outputs": 1,
"noerr": 0,
"initialize": "",
"finalize": "",
"x": 850,
"y": 80,
"wires": [
[
"553b16d833bcfc85"
]
]
},
{
"id": "8439cae9548df4ae",
"type": "function",
"z": "cb009280587b2d34",
"name": "Refresh Token",
"func": "var refresh = flow.get('refresh');\n\nmsg.oauth2Request = {\n \"access_token_url\": global.get('farmOSurl').concat('/oauth/token'), \n \"credentials\": {\n \"grant_type\": \"refresh_token\",\n \"client_id\": \"farm\",\n \"client_secret\": \"client_secret\",\n \"refresh_token\": refresh,\n \"scope\": \"farm_manager\"\n }\n};\nreturn msg;",
"outputs": 1,
"noerr": 0,
"initialize": "",
"finalize": "",
"x": 500,
"y": 20,
"wires": [
[
"7aa71dad7ad382af"
]
]
},
{
"id": "814dda54a6d2dfcb",
"type": "function",
"z": "cb009280587b2d34",
"name": "Creat OAuth2Request",
"func": "var farmOSurl = msg.payload.url\nglobal.set('farmOSurl', farmOSurl);\n\nmsg.oauth2Request = { \n \"access_token_url\": msg.payload.url.concat(\"/oauth/token\"), \n \"credentials\": {\n \"grant_type\": \"password\",\n \"username\": msg.payload.username,\n \"password\": msg.payload.password,\n \"client_id\": \"farm\",\n \"client_secret\": \"client_secret\",\n \"scope\": \"farm_manager\"\n }\n };\nreturn msg;",
"outputs": 1,
"noerr": 0,
"initialize": "",
"finalize": "",
"x": 480,
"y": 80,
"wires": [
[
"7aa71dad7ad382af"
]
]
},
{
"id": "7aa71dad7ad382af",
"type": "oauth2",
"z": "cb009280587b2d34",
"name": "",
"container": "payload",
"access_token_url": "http://localhost/oauth2/token",
"grant_type": "set_by_credentials",
"username": "",
"password": "",
"client_id": "",
"client_secret": "",
"scope": "farmos_restws_access",
"rejectUnauthorized": true,
"headers": {},
"x": 670,
"y": 80,
"wires": [
[
"54e5e55c099a85e8"
]
]
},
{
"id": "01598c1320769cdd",
"type": "credentials",
"z": "cb009280587b2d34",
"name": "farmOS URL ",
"props": [
{
"value": "payload.url",
"type": "msg"
}
],
"credentials": {},
"x": 270,
"y": 80,
"wires": [
[
"814dda54a6d2dfcb"
]
]
},
{
"id": "beb68fa523b60517",
"type": "ui_button",
"z": "cb009280587b2d34",
"name": "",
"group": "16448850.68666",
"order": 2,
"width": 0,
"height": 0,
"passthru": false,
"label": "Refresh Token",
"tooltip": "",
"color": "",
"bgcolor": "",
"className": "",
"icon": "",
"payload": "",
"payloadType": "str",
"topic": "topic",
"topicType": "msg",
"x": 90,
"y": 20,
"wires": [
[
"8439cae9548df4ae"
]
]
},
{
"id": "269fc9d8c70219ea",
"type": "ui_form",
"z": "cb009280587b2d34",
"name": "",
"label": "FarmOS Login",
"group": "16448850.68666",
"order": 1,
"width": 0,
"height": 0,
"options": [
{
"label": "Username",
"value": "username",
"type": "text",
"required": true,
"rows": null
},
{
"label": "Password",
"value": "password",
"type": "password",
"required": true,
"rows": null
}
],
"formValue": {
"username": "",
"password": ""
},
"payload": "",
"submit": "Logg inn",
"cancel": "Avbryt",
"topic": "",
"topicType": "str",
"splitLayout": false,
"className": "",
"x": 90,
"y": 80,
"wires": [
[
"01598c1320769cdd"
]
]
},
{
"id": "553b16d833bcfc85",
"type": "ui_text",
"z": "cb009280587b2d34",
"group": "16448850.68666",
"order": 2,
"width": 0,
"height": 0,
"name": "",
"label": "Auth Token",
"format": "{{msg.payload}}",
"layout": "row-spread",
"className": "",
"x": 1050,
"y": 80,
"wires": []
},
{
"id": "16448850.68666",
"type": "ui_group",
"name": "",
"tab": "e4996a8c673daf28",
"order": 2,
"disp": true,
"width": "6",
"collapse": false,
"className": ""
},
{
"id": "e4996a8c673daf28",
"type": "ui_tab",
"name": "farmOS OAuth2",
"icon": "dashboard",
"order": 1,
"disabled": false,
"hidden": false
}
]