我正在尝试按照this教程使用他们的OAuth 2.0 API对Google进行身份验证。但是,我想直接curl
调用而不是使用他们的库。
我已获取客户端ID和客户端密钥。 现在我正试图获取这样的访问令牌:
curl \
--request POST \
--header "Content-Type: application/json" \
--data '{
"client_id":"MY_CLIENT_ID",
"client_secret":"MY_SECRET_KEY",
"redirect_uri": "http://localhost/etc",
"grant_type":"authorization_code"
}' \
"https://accounts.google.com/o/oauth2/token"
但是,它不起作用。它给了我以下错误:
{
"error" : "invalid_request",
"error_description" : "Required parameter is missing: grant_type"
}
有人可以提供样本卷曲调用以获取访问令牌(和刷新令牌)吗?
答案 0 :(得分:15)
a)您提供的数据应采用表单编码,而不是作为JSON对象呈现; b)您还应在“code”参数中提供授权代码值。例如:
curl -d "client_id=MY_CLIENT_ID&\
client_secret=MY_SECRET_KEY&\
redirect_uri=http://localhost/etc&\
grant_type=authorization_code&\
code=CODE" https://oauth2.googleapis.com/token
答案 1 :(得分:0)
虽然不直接使用CURL,但您也可以使用Google OAuth游乐场获取和测试OAuth令牌:https://developers.google.com/oauthplayground/