gpt4 book ai didi

angularjs - jhipster oauth : How can i get the access_token via CURL

转载 作者:行者123 更新时间:2023-12-04 03:51:09 24 4
gpt4 key购买 nike

我正在尝试使用jhipster工具,以使用oauth2身份验证创建一个新项目。该项目示例运行良好,我可以使用angularjs界面登录,但无法理解如何创建新用户,然后通过Curl命令行获取该新用户的访问 token 。

谢谢你的帮助

最佳答案

步骤1:注册用户。

http://localhost:8080/#/register注册用户,并确保您可以通过Web界面登录。

步骤2:获取OAuth2 token 。

获取OAuth2 token 所需的信息:

  • OAuth2客户端ID(请参阅application.yml)
  • OAuth2 secret (请参阅application.yml)
  • 用于注册新用户的用户名和密码
    用户。
  • 必需范围

  • 然后,从服务器获取OAuth 2 token :
    curl -X POST -vu client:secret http://localhost:8080/oauth/token -H "Accept: application/json" -d "username=username&password=password&grant_type=password&scope=read&client_id=clientid&client_secret=secret"

    ..返回如下内容:
    {"access_token":"7916d326-0f7f-430f-8e32-c5135a121052","token_type":"bearer","refresh_token":"2c69ca58-a657-4780-b5d8-dc965d518e9e","expires_in":1037,"scope":"read"}

    步骤#3:在对 protected 资源的调用中使用 token :

    然后,必须在每次调用的 header 中提供auth token :
    curl http://localhost:8080/app/rest/books -H "Authorization: Bearer 7916d326-0f7f-430f-8e32-c5135a121052"

    关于angularjs - jhipster oauth : How can i get the access_token via CURL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28269487/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com