전자결제 [PayPal] PHP 결제연동
페이지 정보
본문
PayPal(페이팔) PHP 연동 방법입니다.
페이팔은 sandbox 의 가상의 카드를 이용한 모의 결제가 가능합니다.
1. PayPal의 회원가입
sandbox(샌드박스)에서 회원가입
https://www.sandbox.paypal.com
PayPal로 결제받기 > 지금 시작하기
2. 비즈니스 계정 등록
가입하거나 로그인할 이메일 주소를 입력하세요.
...
3. 결제연동 파라미터
form action url : post로 전송할 paypal 서버 주소
cmd : 구매과정을 시작하기 위한 필수값 : _s-xclick
business : 판매대금을 받을 paypal 계정 이메일
item_name : 상품명
item_number : 상품고유번호 / 주문번호 / 인보이스
currency_code : 화폐단위 : 달러 USD , 원화 KRW , 엔화 JPY
amount : 결제금액
charset : 인코딩 문자셋 : utf-8
auantity : 결제수량
<!DOCTYPE html>
<html>
<meta charset="utf-8" />
<head>
<title> paypal 결제 </title>
<style>
#order_container {position:absolute;left:0px;text-align:right;margin:5px;}
</style>
</head>
<body>
<div id="order_container">
<!-- 테스트 계정 -->
<form method="post" action="https://www.sandbox.paypal.com/cgi-bin/webscr">
<!-- 실결제시 -->
<!--<form method="post" action="https://www.sandbox.paypal.com/cgi-bin/webscr">-->
<!--구매요청-->
구매요청 : <input type="text" name="cmd" value="_xclick"><br>
<!--상점계정-->
상점계정 : <input type="text" name="business" value="info-facilitator@myemail.co.kr"><br>
<!--결제후 이동되는 페이지-->
<input type="text" name="return" value="http://localhost/paypal/complete.php"><br>
<!--IPN메세지 받을 페이지-->
IPN메세지 받을 페이지 : <input type="text" name="notify_url" value="http://localhost/paypal/complete.php"><br>
<!--결제 취소 페이지-->
결제 취소 페이지 : <input type="text" name="cancel_return" value="http://localhost/paypal/complete.php"><br>
<!--인코딩-->
인코딩 : <input type="text" name="charset" value="UTF-8"><br>
<!--통화단위-->
통화단위 : <input type="text" name="currency_type" value="USD"><br>
상품이름 : <input type="text" name="item_name" value="toy"><br>
금액 : USD <input type="text" name="amount" value="10"><br>
<input type="submit" value="pay" size="50" />
</form>
</div>
</body>
</html>
참고자료
http://ozahir.tistory.com/280
https://blog.naver.com/jjjhyeok/220291221061
https://blog.naver.com/mankeys/220841703637
페이팔은 sandbox 의 가상의 카드를 이용한 모의 결제가 가능합니다.
1. PayPal의 회원가입
sandbox(샌드박스)에서 회원가입
https://www.sandbox.paypal.com
PayPal로 결제받기 > 지금 시작하기
2. 비즈니스 계정 등록
가입하거나 로그인할 이메일 주소를 입력하세요.
...
3. 결제연동 파라미터
form action url : post로 전송할 paypal 서버 주소
cmd : 구매과정을 시작하기 위한 필수값 : _s-xclick
business : 판매대금을 받을 paypal 계정 이메일
item_name : 상품명
item_number : 상품고유번호 / 주문번호 / 인보이스
currency_code : 화폐단위 : 달러 USD , 원화 KRW , 엔화 JPY
amount : 결제금액
charset : 인코딩 문자셋 : utf-8
auantity : 결제수량
<!DOCTYPE html>
<html>
<meta charset="utf-8" />
<head>
<title> paypal 결제 </title>
<style>
#order_container {position:absolute;left:0px;text-align:right;margin:5px;}
</style>
</head>
<body>
<div id="order_container">
<!-- 테스트 계정 -->
<form method="post" action="https://www.sandbox.paypal.com/cgi-bin/webscr">
<!-- 실결제시 -->
<!--<form method="post" action="https://www.sandbox.paypal.com/cgi-bin/webscr">-->
<!--구매요청-->
구매요청 : <input type="text" name="cmd" value="_xclick"><br>
<!--상점계정-->
상점계정 : <input type="text" name="business" value="info-facilitator@myemail.co.kr"><br>
<!--결제후 이동되는 페이지-->
<input type="text" name="return" value="http://localhost/paypal/complete.php"><br>
<!--IPN메세지 받을 페이지-->
IPN메세지 받을 페이지 : <input type="text" name="notify_url" value="http://localhost/paypal/complete.php"><br>
<!--결제 취소 페이지-->
결제 취소 페이지 : <input type="text" name="cancel_return" value="http://localhost/paypal/complete.php"><br>
<!--인코딩-->
인코딩 : <input type="text" name="charset" value="UTF-8"><br>
<!--통화단위-->
통화단위 : <input type="text" name="currency_type" value="USD"><br>
상품이름 : <input type="text" name="item_name" value="toy"><br>
금액 : USD <input type="text" name="amount" value="10"><br>
<input type="submit" value="pay" size="50" />
</form>
</div>
</body>
</html>
참고자료
http://ozahir.tistory.com/280
https://blog.naver.com/jjjhyeok/220291221061
https://blog.naver.com/mankeys/220841703637
댓글목록
등록된 댓글이 없습니다.