Gaelyk:返回截断的JSON

时间:2014-07-02 20:01:20

标签: groovy gaelyk groovlet

我是"管道"从外部服务返回的json feed(在某些情况下相当大),以隐藏客户端的访问api-key(访问密钥是该服务唯一可用的身份验证系统)。

我正在使用Gaelyk,我写了这个groovlet:

try {
    feed(params.topic)
} catch(Exception e) {
    redirect "/failure"
}

def feed(topic) {

    URL url = new URL("https://somewhere.com/$topic/<apikey>/feed")
    def restResponse = url.get()

    if (restResponse.responseCode == 200) {
        response.contentType = 'application/json'
        out << restResponse.text
    }
}

唯一的问题是&#34; restResponse&#34;非常大,groovlet返回的值被截断。所以我会像这样回到一个json:

[{"item":....},{"item":....},{"item":....},{"ite

如何在没有任何截断的情况下返回完整的json?

1 个答案:

答案 0 :(得分:0)

我找到了解决方案,问题出现在开头(URL内容必须作为流读取)。因此截断的内容不是输出而是输入:

def feed(topic) {
    URL url = "https://somewhere.com/$topic/<apikey>/feed".toURL()
    def restResponse = url.get()

    if (restResponse.responseCode == 200) {
        response.contentType = 'application/json'
        StringBuffer sb = new StringBuffer()
        url.eachLine {
            sb << it
        }
        out << sb.toString()
    }
}