我正在尝试从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
我在做什么错了?
答案 0 :(得分:1)