无法使用 HTTP API 创建 Grafana 用户
Not able to create Grafana User using HTTP API
我正在尝试使用 API 创建 grafana 用户,这是我尝试过的。
curl -XPOST -H “Content-Type: application/json” -d '{“name”:“User”, “email”:“user@graf.com”, “login” :“用户”,“密码”:“密码”}' http://admin:admin@localhost:3000/api/admin/users
得到这个:[{“classification”:“DeserializationError”,“message”:“无效字符'\''正在寻找值的开头”},{“fieldNames”:[“Password”],“classification ”:“RequiredError”,“message”:“Required”}]
谁能帮帮我?
我遵循了 http://docs.grafana.org/http_api/user/ 文档,现在我能够创建用户并能够使用所有 grafana api 的
这是我的问题的答案
import requests
url='http://admin:admin@localhost:3000/api/admin/users'
data='''{
"name":"tester",
"email":"test@graadff.com",
"login":"tester",
"password":"test@123"
}'''
headers={"Content-Type": 'application/json'}
response = requests.post(url, data=data,headers=headers)
print (response.text)
我正在尝试使用 API 创建 grafana 用户,这是我尝试过的。
curl -XPOST -H “Content-Type: application/json” -d '{“name”:“User”, “email”:“user@graf.com”, “login” :“用户”,“密码”:“密码”}' http://admin:admin@localhost:3000/api/admin/users
得到这个:[{“classification”:“DeserializationError”,“message”:“无效字符'\''正在寻找值的开头”},{“fieldNames”:[“Password”],“classification ”:“RequiredError”,“message”:“Required”}]
谁能帮帮我?
我遵循了 http://docs.grafana.org/http_api/user/ 文档,现在我能够创建用户并能够使用所有 grafana api 的
这是我的问题的答案
import requests
url='http://admin:admin@localhost:3000/api/admin/users'
data='''{
"name":"tester",
"email":"test@graadff.com",
"login":"tester",
"password":"test@123"
}'''
headers={"Content-Type": 'application/json'}
response = requests.post(url, data=data,headers=headers)
print (response.text)