2017-04-11 59 views
0

我的API的形式爲:如何在AWS API網關的正文映射模板中定義URL查詢參數?

https://<>.execute-api.us-east-1.amazonaws.com/Testing/api/v1/mobs/<>.json?filename=<>.json&assertion=1 

目前,我剛纔定義,直到我的映射模板的.../mobs/<>.json,就像這樣:

{ 
    "mob_type": "$input.params('type')" 
} 

現在,我添加查詢參數的URL,它們是filenameassertion。那麼,我如何在Body Mapping Template中定義它們呢?

這不起作用:

{ 
    "mob_type": "$input.params('type')" 
    "filename": "$input.params('filename')" 
    "assertion": "$input.params('assertion')" 
} 

回答

相關問題