목록프로그래밍/기타 (2)
만재송
getLocale( )현재 로케일. 지원되는 로케일 값의 전체 목록은 https://origincache.facebook.com/developers/resources/?id=FacebookLocales.xml 을 참조. 현재 게임을 현지화 할 언어를 결정할 때 사용합니다. 값은 FBInstant.startGameAsync()가 호출 되어야만 합니다.Examples// This function should be called after FBInstant.startGameAsync() // resolves. var locale = FBInstant.getLocale(); // 'en_US'Returns string? The current locale.getPlatform( )게임이 현제 실행중인 플랫폼. FB..
payments[IN CLOSED BETA] 게임 제품의 결제 및 구매와 관련된 함수와 속성이 포함됩니다.getCatalogAsync( )게임 제품의 목록을 가져옵니다.ExamplesFBInstant.payments.getCatalogAsync().then(function (catalog) { console.log(catalog); // [{productID: '12345', ...}, ...] });Throws CLIENT_UNSUPPORTED_OPERATIONThrows PAYMENTS_NOT_INITIALIZEDThrows NETWORK_FAILUREReturns Promise 게임에 등록된 제품 세트입니다.purchaseAsync( )특정 제품의 구매 흐름을 시작합니다. FBInstant.star..