HAP_hap调用rest接口(token认证)

实验目的:使用Postman调用测试rest权限认证

随便找一个Controller先测试不用权限的rest


HAP_hap调用rest接口(token认证)_第1张图片
image.png
重新启动服务,用Postman测试
HAP_hap调用rest接口(token认证)_第2张图片
image.png
ok,证明我们的接口没问题了,那我们改写一些,把public去掉
HAP_hap调用rest接口(token认证)_第3张图片
image.png
重新启动服务,用Postman测试
  • Hap新建一个


    HAP_hap调用rest接口(token认证)_第4张图片
    image.png
HAP_hap调用rest接口(token认证)_第5张图片
image.png
  • 去到Postman


    HAP_hap调用rest接口(token认证)_第6张图片
    image.png

    HAP_hap调用rest接口(token认证)_第7张图片
    image.png

    这样就完成了

Auth 2.0定义了四种授权方式:
1.授权码模式(authorization code) 
2.简化模式(implicit) 
3.密码模式(resource owner password credentials) 
4.客户端模式(client credentials)

你可能感兴趣的:(HAP_hap调用rest接口(token认证))