init.runApp - GiGAGenie-ServiceSDK/UserGuide GitHub Wiki
gigagenie.init.runApp
API μ€λͺ
- λ€λ₯Έ App νΈμΆ API
- νΈμΆ λμ μλΉμ€μ AppIDλ₯Ό μμμΌ ν¨
- νΈμΆμ νμ¬ μ€ν μ€μΈ μλΉμ€λ μ€μ§λ¨
API ꡬ쑰
- function runApp(options,callback)
options
appid
: (String, Mandatory) μ λ¬νλ €λ μ¬μ©μ μ μ operation
actioncode
: (String, Mandatory) μ€ννλ €λ Action
parameter
: (JSONObject, Optional) μ λ¬νλ €λ parameter
callbackParameter
: (JSONObject, Optional) RunApp μΌλ‘ νΈμΆν μ±μ΄ runParent μ΅μ
μΌλ‘ μ’
λ£λ λ runAppμ μ€νν μ±μΌλ‘ μ λ¬ν parameter
result_cd
200
: νΈμΆ μ±κ³΅
500
: μμ€ν
μλ¬
extra
μ¬μ© μμ
// callback λ°©μ
var options = {};
options.appid = "A0000006"; // μμ ν μ¬μ©
options.actioncode = "test"; // μμ ν μ¬μ©
var parameters = {
reqParam1: 'reqParam1', // μμ ν μ¬μ©
reqParam2: 'reqParam2' // μμ ν μ¬μ©
};
options.parameter = parameters;
options.callbackParameter = {
param1: 'hello' // μμ ν μ¬μ©
};
gigagenie.init.runApp(options, function (result_cd, result_msg, extra) {
console.log("gigagenie.init.runApp - result_cd:" + result_cd);
console.log("gigagenie.init.runApp - result_msg:" + result_msg);
console.log("gigagenie.init.runApp - extra:" + JSON.stringify(extra));
});