zoukankan      html  css  js  c++  java
  • mac安装 jupyter notebook

    https://jupyter.org/install.html 

    安装:pip install jupyterlab

    启动: jupyter notebook

    如果想用来测试http请求,需要安装requests

    pip install requests

    接下来测试一下get、post请求

    Get access token from KeyCloak 

    import requests as req
    import json
    reqJson = {
        "client_id":"my_application",
        "client_secret": "xxx-4e0b-4667-8f35-xxx",
        "username": "test",
        "password": "xxx",
        "grant_type": "password"
    }
    tokenUrl = 'http://localhost:8080/auth/realms/realm_gem/protocol/openid-connect/token'
    
    header = {
        "Content-Type": "application/x-www-form-urlencoded",
    } 
    
    response = req.post(tokenUrl, data=reqJson, headers=header)
    if response.status_code > 200:
        print (response.text)
    else:
        accessToken = json.loads(response.text)['access_token']
        print(accessToken)
    

    由于生成的token是标准的json web token,所以可以反编译出来加密前的内容,通过下面的网址可以反编译

    https://jwt.io/

    根据生成的token去验证

    header = {
        "Authorization": "Bearer " + accessToken
    } 
    userinfoUrl = 'http://localhost:8080/auth/realms/realm_gem/protocol/openid-connect/userinfo'
    
    response = req.get(userinfoUrl, headers=header)    
    print(response.text)

    curl命令行 

    curl -d 'client_id=xxx-jwt-service' -d 'client-secret=xxx-468a-4ba6-b71a-21672d1376be' -d 'username=dsds@xxx' -d 'password=xxx' -d 'grant_type=password' -X POST 'http://localhost:8080/auth/realms/dev/protocol/openid-connect/token'

    curl -H 'Authorization: bearer ' -X GET 'http://localhost:8080/auth/realms/dev/protocol/openid-connect/userinfo'

      

  • 相关阅读:
    html页面格式化输出js对象
    JavaScript之构造函数
    关于配置nginx服务器相关事宜
    react-native实践(基于antd-mobile)
    python字典和条件控制
    python运算符与数据类型
    python简介和python工具的选择
    day48-python爬虫学习三
    day47-python爬虫学习二
    day46-python爬虫学习
  • 原文地址:https://www.cnblogs.com/iwangzheng/p/11474976.html
Copyright © 2011-2022 走看看