サーチ…


Javaのエコー入力引数

ハンドラ関数の入力をバーフリングすることで、この情報を簡単に取得できます。たとえば、Javaの場合:

public String handleRequest(String input, Context context) {
    context.getLogger().log("Input: " + input);

    String output = "Input:" + System.getProperty("line.separator") + input;
    
    return output;
}


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow