Hi!
I'm creating a web pp which lets visitors authenticate via Google OAuth 2 (Javascript API), and once authentication is complete, on the same page get the list of their AdWords accounts with some basic reports about each account (CPA in last month, etc.).
I've already implemented client-side authentication within AdWords scope. Is it possible to pass the access token via AJAX, and then get the information I need via
Google Ads PHP Client Library and then get the info about their associated AdWords via CustomerService?
I only need temporary, read-only access. Everywhere I read it seems I need to have my own AdWords MCC account and developer token, but I don't want to manage anyone's account.
Am I overcomplicating this? Can it be simply done with javascript only (I couldn't find any info about AdWords Javascript API)?
Please point me in the right direction.