Hi.
Yes we are following https://developers.google.com/android-publisher/authorization Hope we are doing right the first step *Creating an APIs Console project* Because we can’t see for example Services in the left-hand navigation panel. See screenshot <https://lh3.googleusercontent.com/-okBFVoyi8Vw/WWR3dr_p-JI/AAAAAAAAARU/S3sND2UskmohWmKo4KnEWzff2L6O7b25ACLcBGAs/s1600/Create.png> <https://lh3.googleusercontent.com/-6AF5Fqk06zU/WWR3g3uXTqI/AAAAAAAAARY/C9DgKSBWED4HO8sn_xks2l_xrCHl_RKKQCLcBGAs/s1600/Perissins.png> But we do created affilatemanager-167005 and OAuth 2.0 client ID <https://lh3.googleusercontent.com/-muMo7RlWL9I/WWR3jkHO8JI/AAAAAAAAARc/rJenqJt7ctYSW-HgZIcjqBKl_WNDgwVZACLcBGAs/s1600/Cred.png> Now we going to step 2 *Generating a refresh token* *First free points is OK* *Point 4 we running following code and getting 401 error* grant_type=authorization_code code=<the code from the previous step> client_id=<the client ID token created in the APIs Console> client_secret=<the client secret corresponding to the client ID> redirect_uri=<the URI registered with the client ID> int responseCode = conn.getResponseCode(); Please advice On Monday, 3 July 2017 11:35:43 UTC+3, Michael Ginzburg wrote: > > > Hi, we are trying to get Google Play subscription information connected to > one of our Android applications. > > The first step is authorizes and gets subscriptions json. > > > Has anyone succeed to work with Google Play Developer API? Autorization? > Subscriptions list? > > *Our main problem is “How to get token?”* > > Because we are keep getting error never mind which method we use > > We tried all from here for example (not only) > > > https://stackoverflow.com/questions/11115381/unable-to-get-the-subscription-information-from-google-play-android-developer-ap > > > > <https://stackoverflow.com/questions/11115381/unable-to-get-the-subscription-information-from-google-play-android-developer-ap> > > > ========================================================================= > > When we use “Oath 2.0 Playground", we are getting > > { > > "access_token": "ya29.Glt6BA……..E2m82", > > "token_type": "Bearer", > > "expires_in": 3600, > > "refresh_token": "1/3X3bEzKbU,,,,,,,,,,,ZkQGEbewn" > > } > > > > But, when we run step 1 on the web > > > > https://accounts.google.com/o/oauth2/auth?scope=https://www.googleapis.com/auth/androidpublisher&response_type=code&access_type=offline&redirect_uri=urn:ietf:wg:oauth:2.0:oob&client_id=298357274244-9sp4bkpjet9peg6hp9erpuq52j1a1o3p.apps.googleusercontent.com > > > > <https://accounts.google.com/o/oauth2/auth?scope=https://www.googleapis.com/auth/androidpublisher&response_type=code&access_type=offline&redirect_uri=urn:ietf:wg:oauth:2.0:oob&client_id=298357274244-9sp4bkpjet9peg6hp9erpuq52j1a1o3p.apps.googleusercontent.com> > > > we are getting > > > 4/K49JHYkYGaLbmRRU5CvAgPzfgo-DpSYQnkl06J-Sfx8 > > > Then we paste it in our code and run post from our Android app we are > getting error > > > java.io.FileNotFoundException: https://accounts.google.com/o/oauth2/token > > > <https://accounts.google.com/o/oauth2/token> > > we use > > > URL url = new URL("https://accounts.google.com/o/oauth2/token"); > > > > "Oath 2.0 Playground use > > > https://accounts.google.com//oauth2/v4/token > > > We try both but getting the same error > > Here is the app code > > > Map<String,Object> params = new LinkedHashMap<>(); > > params.put("grant_type","authorization_code"); > > params.put("client_id"," > 298357274244-9sp4bkpjet9peg6hp9erpuq52j1a1o3p.apps.googleusercontent.com > "); > > params.put("client_secret"," > client_secret_298357274244-9sp4bkpjet9peg6hp9erpuq52j1a1o3p.apps.googleusercontent.com > "); > > params.put("code",4/K49JHYkYGaLbmRRU5CvAgPzfgo-DpSYQnkl06J-Sfx8); > > params.put("scope",AndroidPublisherScopes.ANDROIDPUBLISHER); > > params.put("redirect_uri","urn:ietf:wg:oauth:2.0:oob"); > > > > StringBuilder postData = new StringBuilder(); > > for(Map.Entry<String,Object> param : params.entrySet()) > > { > > if(postData.length() != 0) > > { > > postData.append('&'); > > } > > postData.append(URLEncoder.encode(param.getKey(),"UTF-8")); > > postData.append('='); > > > postData.append(URLEncoder.encode(String.valueOf(param.getValue()),"UTF-8")); > > } > > byte[] postDataBytes = postData.toString().getBytes("UTF-8"); > > > > URL url = new URL("https://accounts.google.com/o/oauth2/token"); > > HttpURLConnection conn = (HttpURLConnection)url.openConnection(); > > conn.setDoOutput(true); > > conn.setUseCaches(false); > > conn.setRequestMethod("POST"); > > conn.getOutputStream().write(postDataBytes); > > > > BufferedReader reader = new BufferedReader(new > InputStreamReader(conn.getInputStream())); > > > > > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/ea969889-77d0-4fa8-989c-b3ca1b25610f%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
