Hi again!
Sorry for replying on my own post, but here is the solution I was able to make with a little modification, so I though I would gather these into a new message.
To make it work with username / api key combo:
- Open MagicMirror config.js and add a new line to the octomirror module config a new parameter called user: “username”, then save it.
- Open octomirror-module.js in the modules/octomirror-module directory, and modify this:
let user = “_api”, session = “”;
to this:
let user = this.config.user, session = “”; - Save it, and restart the mirror. That should fix the connection issue :)
Hope it might help someone.
bigzolly