** SOLVED *** !!! Now it's all working.
Turns out I was not creating the token precisely the correct way. Here's a sample of the code I use to generate the correct access token in *NodeJs*: const private_key = require('./key.json').private_key; const token = jwt.sign( { iss: SERVICE_ACCOUNT_EMAIL, sub: GOOGLE_MMC_MANAGER_EMAIL, scope: 'https://www.googleapis.com/auth/adwords', aud: 'https://oauth2.googleapis.com/token', exp: Math.round(Date.now() / 1000) + 3600, iat: Math.round(Date.now() / 1000), }, private_key, { algorithm: 'RS256' }, ); // console.log(token); try { const response = await http.post('https://oauth2.googleapis.com/token', { grant_type: 'urn:ietf:params:oauth:grant-type:jwt-bearer', assertion: token, }); const accesstoken = response.data; console.log(accesstoken); } catch (error) { console.log(error.data); } }; I was missing this part in signing the token: *sub: GOOGLE_MMC_MANAGER_EMAIL,* *GOOGLE_MMC_MANAGER_EMAIL *is the email that you created the MMC account with. On Wednesday, January 6, 2021 at 5:36:01 AM UTC+10 Eylon Raymond Harari wrote: > Hi Ernie, > sorry for the late response. > > I have created all the process from scratch and tested, retested, and > still getting the same error. > > The *Reply privately to author* option is disabled and I can only send a > public response - Is there an address for me to send the details or can you > enable this option for me? > > Thanks > On Tuesday, December 22, 2020 at 5:47:44 PM UTC+10 adsapiforumadvisor > wrote: > >> Hi Eylon, >> >> Thanks for posting your concern. >> >> Could you confirm if you tried following the instruction discussed on >> this document >> <https://developers.google.com/google-ads/api/docs/client-libs/python/oauth-service>? >> >> If not, please do so and if the error persists, you can provide the >> following details via *Reply privately to author* option: >> >> - customer ID >> - complete request and response logs with request ID >> >> >> If you haven't enabled the logging of the API transactions yet for Python >> client library, you can follow this guide >> <https://developers.google.com/google-ads/api/docs/client-libs/python/logging> >> . >> >> Regards, >> [image: Google Logo] >> Ernie John Blanca Tacata >> Google Ads API Team >> >> >> ref:_00D1U1174p._5004Q29TUMy:ref >> > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To post to this group, send email to adwords-api@googlegroups.com To unsubscribe from this group, send email to adwords-api+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en --- You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to adwords-api+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/e7cad65b-56eb-47e5-9451-9d9df2a036b4n%40googlegroups.com.