View/embed graphs without being logged into LibreNMS

Is it possible to view device graphs without being logged into LibreNMS? I would like to embed these graphs into another application.

Cacti had a “guest user” feature that would allow this.

try adding this to your config.php $config[‘allow_unauth_graphs’] = true;

http://docs.librenms.org/Support/Configuration/#authentication

I added $config[‘allow_unauth_graphs’] = 0; to my config.php but I still cannot see graphs without logging in, I can see a blank graph grid however, as before, just no data plotted.

The Screenly example with AuthBasicFake, wouldn’t that only work with Apache’s basic auth, vs LibreNMS’s custom login?

0 = means not to allow unauth graphs, you want 1 or true.

Thank you! That solved the problem!