1

我正在使用 SoftLayer REST API,而不是用户名和 API 密钥,我想使用我的 IAM 令牌进行身份验证。这可能吗?

4

2 回答 2

1

这实际上是现在可能的。您现在可以使用您的 IAM api 密钥向 Softlayer API 进行身份验证。为此,您可以执行以下操作。

curl --location --request GET 'https://api.softlayer.com/rest/v3/SoftLayer_Account?objectMask=networkVlanSpan' \
--header 'Authorization: bearer <your token>'

让令牌运行ibmcloud iam oauth-tokens

于 2018-10-24T15:02:48.040 回答
1

这实际上是现在可能的。您现在可以使用您的 IAM api 密钥向 Softlayer API 进行身份验证。为此,您可以执行以下操作。

curl --location --request GET 'https://api.softlayer.com/rest/v3/SoftLayer_Account?objectMask=networkVlanSpan' \
--header 'Authorization: bearer <your token>'

让令牌运行ibmcloud iam oauth-tokens

于 2020-01-30T19:53:10.313 回答