I want to pull periodic reports via Google Seller API. Is there a way, to login into Seller account without having to go via regular OAuth redirection ?
Google AdEx Seller API doesn't support Service accounts
137 Views Asked by Amogh Talpallikar At
1
There are 1 best solutions below
Related Questions in GOOGLE-OAUTH
- Lambda endpoint for the Google OAuth callback does not recieve the access_token
- Unable to call datastore using GCP service account key json
- Google Drive Service Account gets googleapiclient.errors.HttpError: 401 "Request is missing required authentication credential" when authenticating
- If you're using the Google Oauth2 authentication method to send emails with Gmail API from *your* account, when do you need to refresh the token?
- Verifying Google Identity OAuth2 token with Ruby
- I am trying to implement authentication in django using django_cas_ng, and also provide a option for all-auth for google login
- How to Sync Google Calendar Events Using Push Notifications?
- How to use Oauth in order to log‑in on .googleapis.com on almost any arbitrary endpoints domains from the web browser?
- Main tab doesn't retain authenticated state after authenticating user in popup window using Laravel Socialite
- ASP.NET Core Google external login issue
- I don't know how to change the language of my google sign in button
- Django Allauth Bad Request Error, Error Retrieving Access Token: Invalid Grant
- Getting Oauth2 token in Rust
- https://accounts.google.com/gsi/client missing 'Access-Control-Allow-Origin' header
- Using Google OAuth in .NET Core with AWS load balancer
Related Questions in GOOGLE-API-PYTHON-CLIENT
- Google Drive Service Account gets googleapiclient.errors.HttpError: 401 "Request is missing required authentication credential" when authenticating
- MWAA: Timeout on googleapiclient Connection
- Connecting to Gemini Web Chat using Selenium in Python
- Python Google Speech v1 voice_activity_timeouts error
- Why am I getting conflicting columns error through the API but not in the UI report builder for the new 2024 SA360?
- Getting FolderID and folder name inside a particular folder in Google Drive
- Troubleshooting Google Drive API Issue: Google cloud python function Fails to Detect PDF Files in Shared Folder
- Why Does Google API Not Connect and Times Out
- Deploy functions to Cloud Functions using Python
- Created Event Not Visible in Google Calendar Google Api Client Python
- I cannot get Gmail to Base64decode correctly
- ModuleNotFoundError: No module named 'google' with Python
- Increase timeout of API call to Cloud Run
- Google calendar API - Appointment schedule
- YouTube Playlist API does not return all videos in a channel
Related Questions in GOOGLE-RESELLER-API
- Can't create Google Cloud Pub/Sub subscription to receive notifications from Reseller console
- Sneaker Price Comparison model
- How to use google reseller api using service account
- Transfer a customer to your reseller account
- Uncaught TypeError: Cannot read property 'signIn' of null (When running the code on localhost!)
- How to retrieve only the number of seats for all the subscriptions of my customers? (Google Workplace Reseller)
- Problems authenticating Service Account for google reseller api using the nodejs library
- Difference between "Delete Customer" and "End Reseller Relationship" in G-Suite?
- How to get cost for new g suite licenses?
- Google Reseller API to know if a CustomerId (domain) is my reseller customer
- How to retreive invoice details from Google Api
- Re-seller API - insufficient permissions
- G-Suite Reseller Sandbox
- How to pass the domain name into the reseller club api url (searching records)
- G-Suite API to purchase licenses for resellers
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It would make no sense to try to use a service account to access AdEx, which is owned by a user account. You need to obtain a refresh token for the user account, store it somewhere, then use it to obtain an access token whenever you need to access the API. This answer gives the steps to follow How do I authorise an app (web or installed) without user intervention? (canonical ?)