3
我正在使用GMail API,它可以獲取多個Gmail對象的批量響應。 這是以多部分/混合HTTP響應的形式返回的,其中包含一組單獨的HTTP響應,它們由標題中定義的邊界分隔。 每個HTTP子響應都是JSON格式。Ruby分割和解析批量HTTP響應(多部分/混合)
即
result.response.response_headers = {...
"content-type"=>"multipart/mixed; boundary=batch_abcdefg"...
}
result.response.body = "----batch_abcdefg
<the response header>
{some JSON}
--batch_abcdefg
<another response header>
{some JSON}
--batch_abcdefg--"
是否有一個庫或一個簡單的方法來從字符串的響應轉換成一組獨立的HTTP響應或JSON對象?
回答非常[類似的問題](http://stackoverflow.com/questions/33289711/parsing-gmail-batch-response-in-javascript/33300582 #33300582)一會兒回來。也許你可以在那裏得到一些啓發! – Tholle