google-api-console

How to add or change return uri in google console for oAuth2

风流意气都作罢 提交于 2019-12-01 03:24:20
I want to use google oAuth from my webservice i have created new oAuth key but when I use it i get Error: redirect_uri_mismatch The redirect URI in the request: www.blabla.com did not match a registered redirect URI Now, where to find the registered redirect URI to change it, or where can I add another one. Under "API Access" menu of the console I can only "Edit brand information", "Create Another Client ID" and "Edit allowed domains", but I don't have permissions to add one. My problem was that I have created an Client ID for "Service account". And didn't even tried the wizard for "Web

Google map not loading on normal devices but loads on test device(real device)

谁都会走 提交于 2019-12-01 01:24:40
I have a google map in my android application, i have got the api key in my app from Google api console and it sucessfully loads the map in my test device and to those device with whom i shared the apk file, but after i have published the app on play store, and the user downloads the app, the map does not load. This is how the app looks while functioning normally on a test device. This is how it looks after downloading the app Api console Am i missing any steps ? The problem is that you have not added the SHA1 key of your signed apk in your google api console. Do this- While creating your

How to add or change return uri in google console for oAuth2

岁酱吖の 提交于 2019-11-30 22:49:27
问题 I want to use google oAuth from my webservice i have created new oAuth key but when I use it i get Error: redirect_uri_mismatch The redirect URI in the request: www.blabla.com did not match a registered redirect URI Now, where to find the registered redirect URI to change it, or where can I add another one. Under "API Access" menu of the console I can only "Edit brand information", "Create Another Client ID" and "Edit allowed domains", but I don't have permissions to add one. 回答1: My problem

Google map not loading on normal devices but loads on test device(real device)

落爺英雄遲暮 提交于 2019-11-30 20:35:00
问题 I have a google map in my android application, i have got the api key in my app from Google api console and it sucessfully loads the map in my test device and to those device with whom i shared the apk file, but after i have published the app on play store, and the user downloads the app, the map does not load. This is how the app looks while functioning normally on a test device. This is how it looks after downloading the app Api console Am i missing any steps ? 回答1: The problem is that you

Like video with access token on YouTube using YouTube Data API v3?

寵の児 提交于 2019-11-29 05:22:22
I want to like video of YouTube. I have acquired AUTH_TOKEN using AccountManager using the following am.getAuthToken(mAccount, AUTH_TOKEN_TYPE, null, this, new AccountManagerCallback<Bundle>() { public void run(AccountManagerFuture<Bundle> future) { try { if(future != null && future.getResult() != null) { if(future.getResult().containsKey(AccountManager.KEY_AUTHTOKEN)) { AUTH_TOKEN = future.getResult().getString(AccountManager.KEY_AUTHTOKEN); } } } catch(OperationCanceledException e) { } catch(AuthenticatorException e) { } catch(IOException e) { } catch(Exception e) { } } }, null); Now i want

Google Developers Console project creation quota

£可爱£侵袭症+ 提交于 2019-11-28 13:34:53
I have created a total of 30 projects in the Google Developers Console , including 23 between 12/23 and 12/27. Most recently, 3 projects were created on 12/27. When I tried to create a 4th project on 12/27, I got the message You have exceeded the quota for project creations per day. It has now been well over 24 hours since then, and I still cannot add new projects. This same question has gone unanswered (at least) here , here and here . Is it possible that nobody actually knows what the quota is? Since I have waited more than 24 hours after receiving the message before adding any new projects,

Like video with access token on YouTube using YouTube Data API v3?

Deadly 提交于 2019-11-27 23:07:15
问题 I want to like video of YouTube. I have acquired AUTH_TOKEN using AccountManager using the following am.getAuthToken(mAccount, AUTH_TOKEN_TYPE, null, this, new AccountManagerCallback<Bundle>() { public void run(AccountManagerFuture<Bundle> future) { try { if(future != null && future.getResult() != null) { if(future.getResult().containsKey(AccountManager.KEY_AUTHTOKEN)) { AUTH_TOKEN = future.getResult().getString(AccountManager.KEY_AUTHTOKEN); } } } catch(OperationCanceledException e) { }

Android GCM SENDER_ID, how to get it?

白昼怎懂夜的黑 提交于 2019-11-27 06:51:29
I try to migrate to GCM and I have an issue with the SENDER_ID I need to provide. I use the demo project from google. In this project I need, if I understand this well, to provide a SENDER_ID to the application in the CommonUtilities.java file. The SENDER_ID I provided is the API key I registered on https://code.google.com/apis/console/ and has this form: AIzaSyAxxxxxxx_xxxxxxxxxxxnoGZw (total 40 chars). Using this string as SENDER_ID I get on "BroadcastReceiver mHandleMessageReceiver" an error message: From GCM: error (INVALID_SENDER). . Where is the mistake? The string I provide is not the

Android GCM SENDER_ID, how to get it?

本小妞迷上赌 提交于 2019-11-26 12:56:42
问题 I try to migrate to GCM and I have an issue with the SENDER_ID I need to provide. I use the demo project from google. In this project I need, if I understand this well, to provide a SENDER_ID to the application in the CommonUtilities.java file. The SENDER_ID I provided is the API key I registered on https://code.google.com/apis/console/ and has this form: AIzaSyAxxxxxxx_xxxxxxxxxxxnoGZw (total 40 chars). Using this string as SENDER_ID I get on \"BroadcastReceiver mHandleMessageReceiver\" an