API 文档

  1. 通过访问 http://Jumpserver的URL地址/docs 来访问( 如 http://192.168.244.144/docs )
  2. 注:需要打开 debug 模式
  3. $ vi jumpserver/config.yml
  4. ...
  5. Debug: true

手动调用 api 的方法

  1. $ curl -X POST http://localhost/api/users/v1/auth/ -H 'Content-Type: application/json' -d '{"username": "admin", "password": "admin"}' # 获取token
  2. {"token":"937b38011acf499eb474e2fecb424ab3"} # 获取到的token
  3. # 如果开启了 MFA, 则返回的是 seed, 需要携带 seed 和 otp_code 再次提交一次才能获取到 token
  4. curl -X POST http://localhost/api/users/v1/auth/ -H 'Content-Type: application/json' -d '{"username": "admin", "password": "admin"}'
  5. {"code":101, "msg":"请携带seed值, 进行MFA二次认证", "otp_url":"/api/users/v1/otp/auth/", "seed":"629ba0935a624bd9b21e31c19e0cc8cb"}
  6. $ curl -X POST http://localhost/api/users/v1/otp/auth/ -H 'Content-Type: application/json' -H 'cache-control: no-cache' -d '{"seed": "629ba0935a624bd9b21e31c19e0cc8cb", "otp_code": "202123"}'
  7. {"token":"937b38011acf499eb474e2fecb424ab3"}
  8. # otp_code 为动态密码
  9. $ curl -H 'Authorization: Bearer 937b38011acf499eb474e2fecb424ab3' -H "Content-Type:application/json" http://localhost/api/users/v1/users/
  10. # 使用token访问, token有效期 1小时
  11. # 也可以创建一个永久 private_token, 避免二次认证
  12. $ source /opt/py3/bin/activate
  13. $ cd /opt/jumpserver/apps
  14. $ python manage.py shell
  15. >>> from users.models import User
  16. >>> u = User.objects.get(username='admin')
  17. >>> u.create_private_token()
  18. 937b38011acf499eb474e2fecb424ab3
  19. $ curl -H 'Authorization: Token 937b38011acf499eb474e2fecb424ab3' -H "Content-Type:application/json" http://localhost/api/users/v1/users/

python代码示例

  1. import requests
  2. import json
  3. from pprint import pprint
  4. def get_token():
  5. url = 'https://demo.jumpserver.org/api/users/v1/auth/'
  6. query_args = {
  7. "username": "admin",
  8. "password": "admin"
  9. }
  10. response = requests.post(url, data=query_args)
  11. return json.loads(response.text)['token']
  12. def get_user_info():
  13. url = 'https://demo.jumpserver.org/api/users/v1/users/'
  14. token = get_token()
  15. header_info = { "Authorization": 'Bearer ' + token }
  16. response = requests.get(url, headers=header_info)
  17. pprint(json.loads(response.text))
  18. get_user_info()