Getting the below 503 response from the Group Migration API's Insert method (https://developers.google.com/google-apps/groups-migration/v1/reference/archive/insert).
I'm just trying to work through a spike with the example payloads - though if I fiddle with the POST, I can get the 401 or 404 errors; cannot create the 400 error. Is anybody else using this API successfully? Are there temporal service issues with the service?
Thanks! Chris
REQUEST:
POST https://www.googleapis.com/upload/groups/v1/groups/[email protected]/archive? uploadType=media HTTP/1.1
Content-Type: message/rfc822
Authorization: Bearer blah...
Host: www.googleapis.com
Content-Length: 470
Expect: 100-continue
Received: by 10.143.160.15 with HTTP; Mon, 16 Jul 2007 10:12:26 -0700 (PDT)
Message-ID: [email protected]
Date: Mon, 16 Jul 2007 10:12:26 -0700
From: "[email protected]"
To: "[email protected]"
Subject: TEST SUBJECT
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Delivered-To: [email protected]
This is the body of the migrated email message. Booyah!
RESPONSE:
HTTP/1.1 503 Service Unavailable
Server: HTTP Upload Server Built on Dec 3 2012 11:16:02 (1354562162)
Content-Type: application/json
Date: Sat, 08 Dec 2012 00:36:53 GMT
Pragma: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Cache-Control: no-cache, no-store, must-revalidate
Content-Length: 177
{
"error": {
"errors": [
{
"domain": "global",
"reason": "backendError",
"message": "Backend Error"
}
],
"code": 503,
"message": "Backend Error"
}
you should change Message-ID from [email protected] to <[email protected]>
Please see also Google Groups Migration C# API Not Working.