Reputation: 1
We have been using Admin SDK's Directory API to retrieve users from Google Apps Domain and sync it to our application. It has been working fine till now but since past 4-5days our client domain has been experiencing error while retrieving users.
Exception message : 503 OK
{
"code" : 503,
"errors" : [ {
"domain" : "global",
"message" : "Service unavailable. Please try again",
"reason" : "backendError"
} ],
"message" : "Service unavailable. Please try again"
}
I have referred to "backendError accessing users.list in Admin SDK" . But Google hasn't replied yet. Can I know that when will this issue be solved or is there any solution present to solve this issue?
Thanks!
Upvotes: 0
Views: 1044
Reputation: 253
There is nothing you can do about it. Just wait and retry later.
Maybe you are interested in exponential backoff:
Upvotes: 0