Recent searches
No recent searches
앱 요구 사항에 설치 설정 값 전달 시 트리거 액션 중 웹훅의 json body에 {{setting.parameter}} 지시어 사용은 안되나요?
Posted Jul 13, 2023
앱 요구 사항에 설치 설정 값 전달 시 트리거 액션 중 웹훅의 json body에 {{setting.parameter}} 지시어 사용은 안되나요?
아래와 같이 설정 후 앱 업데이트를 하면
아래와 같이 지시어 문자열 그대로 등록이 됩니다.
혹시 trigger > action > value 부분에 {{setting.parameter}}를 사용할 수 있는 방법은 없나요?
0
1
1 comment
Dane
If it's an actual placeholder it should have this format:
{
"app_id": "{{setting.app_id}}"
}
The problem here is
setting.app_id
is not one of the placeholders.0