ckdhkdwns
ckdhkdwns
카드결제 이후 redirect되지 않음
네, 모바일 웹에서는 정상적으로 작동합니다. 웹뷰 앱에서, KB PAY 앱으로 이동하여 결제를 마치고 다시 웹뷰 앱으로 돌아오니, https://payment-gateway-sandbox.tosspayments.com/mobile/auth/card/SEEROO/result?token=[토큰값] 으로 요청을 보냅니다. 이후에 위에서 보여드렸던 화면이 보여집니다. 아래 코드 4번째 줄에서 출력되었습니다.
// react-native-webview
const onShouldStartLoadWithRequest: OnShouldStartLoadWithRequest = (
event: ShouldStartLoadRequest,
) => {
console.log('event.url', event.url);
if (event.url.includes('appleid')) {
return false;
}
setNavState(event);

const convertUrl = new ConvertUrl(event.url);
if (convertUrl.isAppLink()) {
convertUrl.launchApp().then(isLaunch => {
console.log('isLaunch', isLaunch);
if (!isLaunch) {
// 앱이 설치되어 있지 않은 경우 처리
}
});
return false;
} else {
return true;
}
};
// react-native-webview
const onShouldStartLoadWithRequest: OnShouldStartLoadWithRequest = (
event: ShouldStartLoadRequest,
) => {
console.log('event.url', event.url);
if (event.url.includes('appleid')) {
return false;
}
setNavState(event);

const convertUrl = new ConvertUrl(event.url);
if (convertUrl.isAppLink()) {
convertUrl.launchApp().then(isLaunch => {
console.log('isLaunch', isLaunch);
if (!isLaunch) {
// 앱이 설치되어 있지 않은 경우 처리
}
});
return false;
} else {
return true;
}
};
21 replies
카드결제 이후 redirect되지 않음
아닙니다 같습니다
21 replies
카드결제 이후 redirect되지 않음
늦게 확인드려 죄송합니다. successURL이 호출되지 않습니다. 테스트로 successUrl을 https://www.google.com 을 설정해보아도 리다이렉트되지 않았습니다. 혹시 해당 문제가 cors와 관련이 있을까요?
21 replies
카드결제 이후 redirect되지 않음
확인해보고 답장드리겠습니다
21 replies
카드결제 이후 redirect되지 않음
네 그렇습니다
21 replies
카드결제 이후 redirect되지 않음
mid: tintern0mvb (테스트) 입니다.
21 replies