我正在尝试获取我的应用程序的访问令牌,但它总是返回无效的授权,尝试了其他授权类型,但它们都无效
这是邮递员的要求:
curl -X POST \
https://api.wink.com/oauth2/token \
-H 'Content-Type: application/x-www-form-urlencoded' \
-H 'Postman-Token: c78eda14-4c04-4b2c-87cb-37dfa8e2ede9' \
-H 'cache-control: no-cache' \
-d 'client_id=my_client_id&client_secret=my_secret_code&grant_type=authorization_code&undefined='
我的请求有问题吗?