4

For the past couple of weeks the batch task I use to retrieve User Usage Reports from the Reports API has been failing with the following response:

com.google.api.client.googleapis.json.GoogleJsonResponseException: 503 OK
{
  "code" : 503,
  "errors" : [ {
    "domain" : "global",
    "message" : "Backend Error",
    "reason" : "backendError"
  }],
  "message" : "Backend Error"
}

Is anyone else seeing this error? Seems like an internal error on the API. Is there anything I can do on my end to avoid this problem? Thanks!

Teodor Talov
  • 1,933
  • 2
  • 25
  • 39
user2722238
  • 241
  • 1
  • 4
  • 7

2 Answers2

0

you have this error beacause Project Number (Sender ID) is not found or deleted. Create the news project in https://console.developers.google.com/project and test with this url :https://www.googleapis.com/storage/v1/b?project= Project Number

Thanks

0

I was having a 503 in my backend when i had an endpoint query. when you are using google datastore first you have to run it on localhost so it would create the index in a file called datastore-indexes-auto.xml this is automaticaly generated.

this is an index example

<!-- Used 1 time in query history -->
<datastore-index kind="Conference" ancestor="true" source="auto">
    <property name="name" direction="asc"/>
</datastore-index>

  • hi... while you were getting a 503, it is possible that you may have got it for a different reason from the question asker... could you clarify how you are inferring that the error you got is related to the question, perhaps by posting further details of the error... – user1055604 Mar 26 '15 at 15:19