我正在尝试创建一个apigateway映射模板,它将转换为:
{
"ref": "refs/heads/master"
}
进入这个:
{
"download_url":"http://example.com/master"
}
所以我尝试了这个:
{
"branch": $input.path($.ref).substring($input.path($.ref).lastIndexOf('/')+1)
}
测试此方法我得到一个简单的错误:
Execution failed due to configuration error: Unable to transform request
现在,我当然想知道为什么会失败。但更重要的是:我该如何调试呢?反正有没有为映射模板获取更具描述性的错误消息?