我正在尝试从edx文档中执行以下内容
curl -X POST /oauth2/v1/access_token/\
-d "grant_type=client_credentials&client_id={client_id}
&client_secret={client_secret}&token_type=jwt" \
https://api.edx.org/oauth2/v1/access_token
我的要求如下:
curl -X POST /oauth2/v1/access_token/ -d "grant_type=client_credentials&client_id=user&client_secret=root&token_type=jwt" http://127.0.0.1:18010/oauth2/v1/access_token
我正在捕获以下错误:
curl: (3) URL using bad/illegal format or missing URL
请说明错误的原因以及相关的纠正措施。