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
135 Views Asked by Amogh Talpallikar At
1
There are 1 best solutions below
Related Questions in GOOGLE-OAUTH
- Not getting refresh token with google oauth2
- getting google contacts using shuttlecloud
- How to use Authentication again after it was granted prevously
- Youtube API - Listing hidden videos of my channel using OAuth
- How can I make a copy of a file in Google Drive via Python?
- Error "Invalid token: Cannot parse referred token string" when trying to access to Picasaweb API with oAuth2 from Java
- Need to run getAuthToken twice before receiving access token, why?
- Retrieve Google Sites's Domain Index feed using OAuth 2.0 with Service Account
- On App Engine using Go, correct method for using OAuth2
- Google App Engine Python - YouTube API v3 - Insufficient Permission
- How to set redirect URI with pattern for OAuth 2 with Google?
- Not able to extract access token google service account
- What Google Account is associated with an OAuth Client ID?
- Accessing Google api with multi user
- Unauthorized Client Exception with Google Drive Service Account
Related Questions in GOOGLE-API-PYTHON-CLIENT
- Why I receive CERTIFICATE_VERIFY_FAILED from google adwords api?
- Python: Efficient way to split list of strings into smaller chunks by concatenated size
- Why does using the Google APIs Python client in appengine with GAE_USE_SOCKETS_HTTPLIB result in ResponseNotReady
- How to authorize a Python Google API client service given an OAuth2 access_token?
- Failed in getting the downloadUrl property of files in Google Drive with python API
- Invalid and/or missing SSL certificate for URL when calling apiclient.discovery.build
- Youtube videos rate API does not increase like/dislike counter
- Google API Client for Python. Batch requests: how to access to a specific request in the callback
- App engine call to Google API python client return 403 with @oauth_required
- Why is my Python BigQuery Dataflow sink not inserting records into the database?
- Unauthorized to access the project monitoring records for Compute Engine
- Google Calendar API "The requested minimum modification time lies too far in the past." after just one day
- Unable to get Domain Restricted Google+ Community Name
- Do Google API keys work for Prediction API?
- Which is the correct api to interact with google spreadsheets in python?
Related Questions in GOOGLE-RESELLER-API
- How to use nextPageToken in Google Apps Reseller API?
- Access_ Dined reseller3.0 - RapidReseller
- getting started with google directory API and device management
- whar is the oauth service name for the google apps reseller api
- Can't create Google Cloud Pub/Sub subscription to receive notifications from Reseller console
- G-Suite Reseller Sandbox
- Re-seller API - insufficient permissions
- How to retreive invoice details from Google Api
- Issue with google Reseller API sending batch requests
- google reseller api using oauth2
- Problems authenticating Service Account for google reseller api using the nodejs library
- How to retrieve only the number of seats for all the subscriptions of my customers? (Google Workplace Reseller)
- Uncaught TypeError: Cannot read property 'signIn' of null (When running the code on localhost!)
- How to use google reseller api using service account
- Create a new customer in the sandbox receive a 500 error. Google Reseller API v1
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 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 ?)