我收到503错误,说服务不可用'当我试图通过sdk v2将多部分内容发布到谷歌驱动器时。我得到了一个空的响应内容和一个标题如下:
{'content-length': '0', 'x-google-cache-control': 'remote-fetch', 'expires': 'Fri, 01 Jan 1990 00:00:00 GMT', 'server': 'HTTP Upload Server Built on Jun 14 2012 02:12:09 (1339665129)', 'via': 'HTTP/1.1 GWA', 'pragma': 'no-cache', 'cache-control': 'no-cache, no-store, must-revalidate', 'date': 'Tue, 03 Jul 2012 23:12:09 GMT', 'content-type': 'text/html; charset=UTF-8'}
以下是我发布的内容:
POST /upload/drive/v2/files?uploadType=multipart
Authorization: Bearer <Access token>
Content-Length: <length>
Content-Type: multipart/related; boundary="<a base64 encoded guid>"
--<a base64 encoded guid>
Content-Type: application/json
{"title": "test.jpg", "mimeType":"image/jpeg", "parents":[]}
--<a base64 encoded guid>
Content-Type: image/jpeg
Content-Transfer-Encoding: base64
<base64 encoded binary data>
--<a base64 encoded guid>--
我做错了什么吗?我可以成功地通过POST来创建元数据然后使用uploadType = media进行PUT更新,但我不想进行两次API调用。
有什么想法吗?
答案 0 :(得分:1)
可能不是。 503错误只是表示服务器停机维修或其他什么。它最低限度能够响应503错误,但它基本上是下降的。如果您想了解更多信息,请阅读此内容:
http://www.checkupdown.com/status/E503.html
答案 1 :(得分:1)
嗨克里斯:这就是我正在做的......
url = 'https://www.googleapis.com/upload/drive/v2/files?uploadType=multipart'
boundary = base64.b64encode(uuid.uuid4().bytes)
parts = []
parts.append('--' + boundary)
parts.append('Content-Type: application/json')
parts.append('')
parts.append(json.dumps({
'title': name,
'mimeType': 'image/jpeg',
'parents': [{
'kind': 'drive#file',
'id': folderId
}] if folderId else []
}))
parts.append('--' + boundary)
parts.append('Content-Type: image/jpeg')
parts.append('Content-Transfer-Encoding: base64')
parts.append('')
parts.append(base64.b64encode(content))
parts.append('--' + boundary + '--')
parts.append('')
body = '\r\n'.join(parts)
headers = {
'Content-Type': 'multipart/related; boundary="%s"' % boundary,
'Content-Length': str(len(body)),
'Authorization': 'Bearer %s' % access_token
}
response = urlfetch.fetch(url, payload=body, method='POST', headers=headers)
assert response.status_code == 200, '%s - %s' % (response.status_code, response.content)
r = json.loads(response.content)