Stephen Yeargin

Results 37 comments of Stephen Yeargin

What's likely happening is that the `/render` endpoint is returning the HTML instead of the expected PNG, and our Hubot package is not catching that and displaying an error like...

> It'd be nice if there were a way to capture that response as a 500 and return an error message instead of the HTML snippet though. Yep, agree with...

What will make that a bit of a challenge is that in the case of the Slack adapter, we're passing that URL along without checking to see if it's valid....

Interesting idea! I don't use that platform, but can review a PR that integrates with it. It appears there is a [Flowdock Hubot adapter](https://github.com/flowdock/hubot-flowdock), so it should respond with the...

This looks like it may be related to #51. See if you can set `export NODE_TLS_REJECT_UNAUTHORIZED=0` in your ~Grafana~ Hubot config to tell the lower-level request library to accept your...

This package requires an API key rather than Basic Auth (which would be their username and password). If that product doesn't let you generate an API key for a particular...

You may be able to specify it in the `HUBOT_GRAFANA_HOST` environment variable, [per their documentation](https://grafana.com/docs/http_api/auth/). ``` HUBOT_GRAFANA_HOST=https://:@myserver.example.com ```

@mfilotto Have a second to help us understand what might be going on here?

@mechko I think we can rely on whatever settings are needed by the Rocket.Chat adapter, given this is an integration specific to that platform. Do you think we should leverage...

👍 It appears to be something defined for the lower level SDK. I agree the URL is a much cleaner way to define it. The "fix" for this bug (aside...