1.在谷歌端 获取到client_id 与client_secret
2. 获取谷歌登录的code
3. 获取 refresh_token
发送POST请求到https://accounts.google.com/o/oauth2/token
参数:
grant_type=authorization_code
code={获得的 code 值}
client_id={获得的 clientId}
client_secret={获得的 clientSecret}
redirect_uri={填写的 redirectURI}
access_type=offline
approval_prompt=force
4. 更多参见链接
https://alex-my.xyz/google-payment-verification
ada