apache/openwhisk

do not base64 encode __ow_body for raw web actions

开放

#3,920 创建于 2018年7月30日

 (2 条评论) (0 个反应) (0 位负责人)Scala (1,177 个派生)batch import
controllergood first issuehelp wanted

仓库指标

星标
 (6,777 个星标)
PR 合并指标
 (PR 指标待抓取)

描述

#3919 removes the base64 encoding requirement when returning JSON as string (and setting the content-type). However we continue to encode JSON for raw http actions receiving __ow_body. For symmetry, we should stop doing that as well. This is largely in place for legacy reasons (spray vs akka). The net of this change is that functions would JSON.parse(param.__ow_body) instead of JSON.parse(decode64(param.__ow_body)).

贡献者指南