Skip to content

init.checkFgAction

ServiceSDK edited this page Jul 5, 2022 · 4 revisions

gigagenie.init.checkFgAction (Deprecated)

API 설명

  • Foreground Action 확인 API
  • Background 에서 실행중인 웹에서 Foreground action을 조회

API 구조

  • function checkFgAction(options,callback)
  • options
    • null
  • result_cd
    • 200: 시작 성공
    • 404: Foreground에서 실행 중인 서비스 없음
    • 500: 시스템 에러
  • extra
    • actionCode: Foreground에서 실행 중인 actionCode

사용 예시

// callback 방식
var options = {};
gigagenie.init.checkFgAction(options, function (result_cd, result_msg, extra) {
    if (result_cd === 200) {
        console.log("actionCode: " + extra.actionCode);
    } else {
        console.log("checkFgAction is fail.");
        console.log("result_cd: " + extra.result_cd);
    }
});

UserGuide

Clone this wiki locally