
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
react-native-bootpay
Advanced tools
부트페이 리액트 네이티브 모듈입니다. 이니시스, 네이버페이, 카카오페이 등 모든 PG와 결제수단을 간편하게 결제연동 할 수 있습니다. PG나 결제수단 변경시 parameter 만 바꾸면 되며, 더욱 개발하기 쉽도록 인터페이스를 제공합니다.
부트페이는 국내 주요 PG와 모든 결제수단을 쉽게 연동할 수 있는 인터페이스를 제공합니다. PG를 추가/변경시 파라미터만 변경하거나, 코드변경없이도 가능하도록 제공합니다. 복잡한 결제를 쉽게 연동하여 개발비용과 시간을 절감하세요!
npm install react-native-bootpay --save
or:
yarn add react-native-bootpay
react-native-bootpay 모듈은 react-native-device-info 와 react-native-sensitive-info를 서브모듈로 사용합니다. 따라서 react-native-bootpay 모듈 설치시 함께 설치해주셔야 합니다. package.json 파일의 dependencies에 아래의 코드를 추가해주세요.
// ...
"dependencies": {
"react-native-device-info": "7.2.1",
"react-native-sensitive-info": "5.5.8"
},
//...
yarn install 후에 ios 폴더에서 pod init을 하여 설치를 완료합니다.
Add Files to <...>node_modules ➜ react-native-bootpay ➜ ios ➜ select Bootpay.xcodeprojlibBootpay.a to Build Phases -> Link Binary With LibrariesAlertnatively, you may use the podspec file:
...
pod 'Bootpay', :path => '../node_modules/react-native-bootpay'
...
android/settings.gradle:
include ':react-native-bootpay'
project(':react-native-bootpay').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-bootpay/android')
3.4.1 in android/build.gradle:
buildscript {
...
dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'
}
...
}
...
import { BootpayWebView } from 'react-native-bootpay';
// ...
const bootpay = useRef<BootpayWebView>(null);
// ...
const onPress = () => {
const payload = {
pg: 'danal', //['kcp', 'danal', 'inicis', 'nicepay', 'lgup', 'toss', 'payapp', 'easypay', 'jtnet', 'tpay', 'mobilians', 'payletter', 'onestore', 'welcome'] 중 택 1
name: '마스카라', //결제창에 보여질 상품명
order_id: '1234_1234', //개발사에 관리하는 주문번호
method: 'card',
price: 1000 //결제금액
}
//결제되는 상품정보들로 통계에 사용되며, price의 합은 결제금액과 동일해야함
const items = [
{
item_name: '키보드', //통계에 반영될 상품명
qty: 1, //수량
unique: 'ITEM_CODE_KEYBOARD', //개발사에서 관리하는 상품고유번호
price: 1000, //상품단가
cat1: '패션', //카테고리 상 , 자유롭게 기술
cat2: '여성상의', //카테고리 중, 자유롭게 기술
cat3: '블라우스', //카테고리 하, 자유롭게 기술
}
]
//구매자 정보로 결제창이 미리 적용될 수 있으며, 통계에도 사용되는 정보
const user = {
id: 'user_id_1234', //개발사에서 관리하는 회원고유번호
username: '홍길동', //구매자명
email: 'user1234@gmail.com', //구매자 이메일
gender: 0, //성별, 1:남자 , 0:여자
birth: '1986-10-14', //생년월일 yyyy-MM-dd
phone: '01012345678', //전화번호, 페이앱 필수
area: '서울', // [서울,인천,대구,광주,부산,울산,경기,강원,충청북도,충북,충청남도,충남,전라북도,전북,전라남도,전남,경상북도,경북,경상남도,경남,제주,세종,대전] 중 택 1
addr: '서울시 동작구 상도로' //주소
}
//기타 설정
const extra = {
app_scheme: "bootpaysample", //ios의 경우 카드사 앱 호출 후 되돌아오기 위한 앱 스키마명
expire_month: "0", //정기결제가 적용되는 개월 수 (정기결제 사용시), 미지정일시 PG사 기본값에 따름
vbank_result: true, //가상계좌 결과창을 볼지(true), 말지(false)
start_at: "", //정기 결제 시작일 - 지정하지 않을 경우 - 그 날 당일로부터 결제가 가능한 Billing key 지급, "2020-10-14"
end_at: "", // 정기결제 만료일 - 기간 없음 - 무제한, "2020-10-14"
quota: "0,2,3", //결제금액이 5만원 이상시 할부개월 허용범위를 설정할 수 있음, [0(일시불), 2개월, 3개월] 허용, 미설정시 12개월까지 허용
offer_period: "", //결제창 제공기간에 해당하는 string 값, 지원하는 PG만 적용됨
popup: 1, //1이면 popup, 아니면 iframe 연동
quick_popup: 0, //1: popup 호출시 버튼을 띄우지 않는다. 아닐 경우 버튼을 호출한다
locale: "ko",
disp_cash_result: "Y", // 현금영수증 보일지 말지.. 가상계좌 KCP 옵션
escrow: "0", // 에스크로 쓸지 안쓸지
theme: "purple",
custom_background: "",
custom_font_color: "",
iosCloseButton: false
}
if(bootpay != null && bootpay.current != null) bootpay.current.request(payload, items, user, extra);
}
// ...
const onCancel = (data: string) => {
console.log('cancel', data);
}
const onError = (data: string) => {
console.log('error', data);
}
const onReady = (data: string) => {
console.log('ready', data);
}
const onConfirm = (data: string) => {
console.log('confirm', data);
if(bootpay != null && bootpay.current != null) bootpay.current.transactionConfirm(data);
}
const onDone = (data: string) => {
console.log('done', data);
}
const onClose = () => {
// thi
}
// ...
return (
<View style={styles.container}>
<TouchableOpacity
style={styles.button}
onPress={onPress}
>
<Text>Press Here</Text>
</TouchableOpacity>
<BootpayWebView
ref={bootpay}
ios_application_id={'5b8f6a4d396fa665fdc2b5e9'}
android_application_id={'5b8f6a4d396fa665fdc2b5e8'}
onCancel={onCancel}
onError={onError}
onReady={onReady}
onConfirm={onConfirm}
onDone={onDone}
onClose={onClose}
/>
</View>
);
MIT
FAQs
bootpay react-native module
The npm package react-native-bootpay receives a total of 10 weekly downloads. As such, react-native-bootpay popularity was classified as not popular.
We found that react-native-bootpay demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.