Every time I try to enable Google Ads API on the google cloud platform i receive the following error:
API solution not found with service name: googleads.googleapis.com
I've set up an ads manager account under the same email and generated an API access token. I've tried setting it up under different emails and in different browsers and I have even tried using incognito mode to see if that would resolve the issue per the instructions of other threads. I've also created the oauth2 credentials for the project I'm trying to give access to the Google Ads api.
I really just need to enable the Google Ads API. Any help would be much appreciated.
For me just disabling ad-blocker fixed the issue.
After paying for Google support, this is what i found:
Disable all Google Chrome extensions
Start Google Chrome in Incognito Mode
Sign into Google Cloud Console and add the api from the api library.
It's that simple.
Related
The process of setting up a setting up an oauth consent screen and getting the credentials.json is tedious to do every time I create project to use Google APIs. Is there a way to do this from the command line?
I wasn't able to figure out how to enable oauth with the gcloud cli by Googling.
You may follow the progress of this issue's feature request by paying attention to the issue tracker.
I cannot seem to get past the Google Authorization pop that always returns Error 401: deleted_client.
I created a Google sheet script a while back and I need to get it working again. I made a GCP account and tried messing around with that for hosting the app but I realized I didn't need that so I deleted all of my projects and my billing account. But I still can't get past the Google Sheet error when it tries to authorize my account. This worked before I started anything with GCP and was fine.
I've seen other issues saying that there needs to have some fixes in the GCP account and that's fine and all but I do not want this connected to GCP at all. I will never use GCP again and I can't even find a way to shut down the account entirely without removing my Google account.
I've tried clearing all cache and cookies from chrome since the beginning of time like some others have suggested that doesn't fix the issue either.
Thanks in advance!
It's confusing but, if your script uses Google APIs you must associate the script with a Google Cloud Platform (GCP) project.
See Google Cloud Platform projects for an explanation of this relationship.
GCP projects are used to group enabled Google services, to provide identities and configure OAuth.
Please read the document but see (re)creating OAuth credentials.
You'll need to:
Create a GCP project
Enable Google services
Configure OAuth consent
DazWilkin lead me in the right direction!
The last thing that was needed was to go to the existing Google Sheet script, hit the gear in the left panel of the new editor, then change the GCP project number to match the GCP project I created with OAuth creds. Thanks again!
I am new with google cloud platform and trying to get started. I am interested in using Google Cloud storage.
Following this link:
datastore reference I can see available client libraries (c++ is not one of them)
Now there is google api c++ client:
google api c++ client
and it has "Google Cloud Datastore API" as one of the service api's available.
And then there is this link:
https://developers.google.com/api-client-library/cpp/
which just says:
"The Google APIs C++ Client Library is no longer available. Thank you for your interest."
That got me a bit confused. As I would like to use cloud DataStore via native c++ api.
If you're willing to do quite a bit of work you can interact with the REST API directly using whatever technology you like. You'll need to do understand how to generate an OAUTH2 credential and how the OAUTH2 scopes etc. work. You can then create an OAUTH2 cookie for the Authorization header. Once you're on top of the that the Google APIs helps you navigate the APIs and work out the expected requests and responses:
https://cloud.google.com/datastore/docs/reference/data/rest/
The REST guide lets you try out calls yourself too.
I am on Google Apps unlimited license, and I am trying to obtain the download log of both domain user and external user via Google API. I have tried the Activities List API of Admin SDK to obtain the activities logs but according to the following man page
https://developers.google.com/admin-sdk/reports/v1/reference/activity-ref-appendix-a/drive-event-names
the download event properties is not included in the API result. However, is there any API that allow me get the download log?
Or if there are any other ways, such as using 3rd party Google Drive Addon, any suggestions are appreciated.
Thank you
It does not appear that there is an audited activity for downloads: https://developers.google.com/admin-sdk/reports/v1/reference/activity-ref-appendix-a/drive-event-names
Is there a way I can leverage the Google APIs to get a report on Google Voice usage in my domain? We just turned it on and wanted to see if any of our users were using the service.
Google Voice is not a core service within Google Apps and does not fall under Google's SLA. There are also no official APIs that allow access to Google Voice data. There is however at least one unofficial Python library to interact with Google Voice programatically.