天天看點

Google支付服務端client_id和client_secret及refresh_token參數申請

第一步:擷取client_id和client_secret

登入開發賬号,在API權限裡面建立相應的Oauth用戶端擷取

第二步:擷取Authorization code

https://accounts.google.com/o/oauth2/auth?scope=https://www.googleapis.com/auth/androidpublisher&response_type=code&access_type=offline&redirect_uri=http://localhost&client_id={client_id}

直接複制到浏覽器位址欄回車,然後在位址欄會看到code,儲存留待下一步用

第三步:擷取refresh_token(是一個長效token)

<form  id="iosLoad" action="https://accounts.google.com/o/oauth2/token" method="post">

    <input  name="grant_type" value="authorization_code">

    <input  name="code" value="code">

    <input  name="client_id" value="client_id">

    <input  name="client_secret" value="client_secre">

    <input  name="redirect_uri" value="http://localhost">

    <input type="submit" value="送出">

</form>

可以放到一個jsp頁面裡面,點選送出擷取refresh_token,得到一個JSON檔案如下:

{

    "access_token": "yi02.3gC2jwm77YPkylq0H5sPJ8559JHX93Kq8qZHRMogL300XKD02125deFEPY6zg",

    "token_type": "Bearer",

    "expires_in": 3600,

    "refresh_token": "1/FbQD421215jJDHX9Kq8qCHRJaDa_M0U5WupXL_o"

}

注意 隻能用post請求,另refresh_token隻有第一次發起請求得到的JSON字元串中包含,以後再請求将不再出現refresh_token,寶寶們一定要把它儲存好了,切記,切記,切記(重要的事情說三遍!!!)

至此服務端調用google支付api需要的參數準備完畢