gpt4 book ai didi

Mule 4 HTTP 请求客户端访问 OAuth 2 端点

转载 作者:行者123 更新时间:2023-12-05 04:02:54 26 4
gpt4 key购买 nike

有一个由 OAuth2 保护的外部服务(比如说“https://external-service.com/service”)。我有客户端 ID(假设为“123_my_client_id”)、 secret ID(“324_mysecret”)和访问 token URL(假设为“https://access-token.com/access-token”)返回 token 。
我想用我的 Mule 4 Http 请求访问这个服务。我跟着这个https://docs.mulesoft.com/connectors/http/http-authentication#oauth2-client-credentials ,但找不到任何可行的解决方案。

这可以在 Mule 3.9 中完成。但仍在努力为 Mule 4 设置此 http 请求配置。任何人都可以帮助设置此请求配置。

最佳答案

为了将请求身份验证迁移到 Mule 4,配置现在属于 http:request-connection 组件并且 HTTP 身份验证配置必须放在 http:authentication 组件。这适用于所有受支持的身份验证类型:基本、摘要、NTLM 和 OAuth2。

来自所提供链接中的示例:

    <http:request-config name="HTTP_Request_Configuration"
host="some.api.com" port="80" basePath="/api/1.0">
<oauth:client-credentials-grant-type
clientId="your_client_id" clientSecret="your_client_secret"
tokenUrl="http://some.api.com/api/1.0/oauth/token"
scopes="access_user_details, read_user_files">
</oauth:client-credentials-grant-type>
</http:request-config>

更改为:

    <http:request-config name="HTTP_Request_Configuration">
<http:request-connection host="some.api.com" port="80">
<http:authentication>
<oauth:client-credentials-grant-type
clientId="your_client_id" clientSecret="your_client_secret"
tokenUrl="http://some.api.com/api/1.0/oauth/token" scopes="access_user_details, read_user_files" />
</http:authentication>
</http:request-connection>
</http:request-config>

Studio 可能会提示 oauth 元素,但它应该可以正常启动。忽略它。

关于Mule 4 HTTP 请求客户端访问 OAuth 2 端点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54007544/

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