m0nhawk/grafana_api

Giving access denied

gangadhar04051996 opened this issue · 3 comments

What API call you use?
users.find_user(...)
What is the actual output?
Client error 403 permission denied.
What is the expected output?
it should be showing user.

I would like to confirm that v1.0.2 didn't fix the problem.

Is your auth value valid? I've had a same problem, use of basic auth solved it.

# Use basic authentication:

grafana_api = GrafanaFace(
          auth=("username","password"),
          host='api.my-grafana-host.com'
          )

From the doc, this endpoint requires basic auth:

Requires basic authentication and that the authenticated user is a Grafana Admin.

From here.