1

Group Migration API の Insert メソッド (https://developers.google.com/google-apps/groups-migration/v1/reference/archive/insert) から以下の 503 レスポンスを取得します。

サンプルのペイロードでスパイクを処理しようとしていますが、POST をいじると、401 または 404 エラーが発生する可能性があります。400 エラーを作成できません。他の誰かがこの API をうまく使っていますか? サービスに一時的なサービスの問題はありますか?

ありがとう!クリス

リクエスト:

POST https://www.googleapis.com/upload/groups/v1/groups/testmaspa@googlegroups.com/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: NNNN@mail.samplegroup.com
Date: Mon, 16 Jul 2007 10:12:26 -0700
From: "chris@mnaspa.org"
To: "chris@mnaspa.org"
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: testmaspa@googlegroups.com
This is the body of the migrated email message.  Booyah!

応答:

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"
 }
4

2 に答える 2