在向Google发送身份验证请求时,我遇到了第二步的问题。在回复中,我没有收到Google应该发给我的代码。这是我的代码:
def client = new RESTClient("https://accounts.google.com/o/oauth2/auth")
def p = [
scope: scope,
state: "security_token="+state,
redirect_uri: redirecturi,
response_type: responsetype,
client_id: clientID,
ignoreSSLIssues: true,
]
def response = client.post ( body : p,
contentType : URLENC)
我确保所有参数都正确,但在回复中我得到Status 302
并且我没有收到代码。
我对redirect_uri
只有疑问,我正在使用这个:
https://developers.google.com/oauthplayground
提前致谢!!!