如何使用Cloud Foundry API获取令牌?

时间:2019-06-28 19:29:51

标签: oauth-2.0 cloudfoundry restful-authentication pivotal-cloud-foundry

我正在尝试从Cloud Foundry获取令牌。我从cf oauth-token命令中获得了令牌,但是我尝试使用curl它给了我一个错误:

{
  "description": "Unknown request",
  "error_code": "CF-NotFound",
  "code": 10000
}  

我正在使用的Curl命令:

curl 'https://<domian>/oauth/token' -X POST \
        -H 'Content-Type: application/x-www-form-urlencoded' \
        -H 'Accept: application/json

我在做什么错了?

1 个答案:

答案 0 :(得分:1)