Reputation: 11
Since last Friday, I am getting a 500 Internal Server ERROR while using Google Local Services API; through Auth2.0 Method as per the documentation. https://services.google.com/fh/files/helpcenter/lsa_api_dev_guide.pdf
I am sending the following request url and header:
request = 'https://localservices.googleapis.com/v1/accountReports:search?query=manager_customer_id:8067322687'
token ='ya29.A0AVA9y1tEQEvxw7u_6XpV3ouZpkCUFKmm66_le7X-utmDcqtu08PRQiA8aSXnzHFKioeU7K71S55slIKsGURG9X6ecuzzCHI_9Yk0APXAG2orgQozxfg2AgBbO37QYGLQHsuUmLcMlb46TNfBORN47M8aB998PiAYUNnWUtBVEFTQVRBU0ZRRTY1ZHI4RnZXLW1MdTVwQjBzN3RjMVFodHdBZw0166'
headers:
{
Authorization: 'Bearer ' + token,
}
scope = [ttps://www.googleapis.com/auth/adwords]
And getting this response:
response: {
"error": {
"code": 500,
"message": "Internal error encountered.",
"status": "INTERNAL"
}
}
Upvotes: 1
Views: 894
Reputation:
I was also facing the same issue. This morning I checked again and now API is working fine again. Google has fixed the issue!
Upvotes: 0