Skip to content

Commit 5bd2b1e

Browse files
committed
rename group
1 parent 03686c7 commit 5bd2b1e

File tree

4 files changed

+70
-2
lines changed

4 files changed

+70
-2
lines changed

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2017 bootpay
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
2+
## PG Analytics - 결제데이터 분석서비스
3+
* 기존 PG 사를 이용 중이신 사업자도 별도의 계약없이 부트페이를 통해 결제 연동과 통계를 무료로 이용하실 수 있습니다.
4+
* 한줄의 소스코드로 인사이트를 얻어 매출을 극대화하세요.
5+
6+
7+
8+
## 결제 검증 및 취소 - 서버사이드용
9+
* 보안상의 이유로 결제검증과 취소는 서버사이드에서 이루어집니다.
10+
* 부트페이 서버와 통신시 Rest용 Application Id, Private Key 값을 보내주셔야 하며, 보내실 서버의 IP는 미리 등록하셔야 합니다.
11+
12+
## 설치
13+
14+
build.gradle (project)
15+
```
16+
pip install bootpay
17+
```
18+
19+
## 샘플 코드
20+
```python
21+
from bootpay import Bootpay
22+
23+
bootpay = Bootpay('5b8f6a4d396fa665fdc2b5ea', 'rm6EYECr6aroQVG2ntW0A6LpWnkTgP4uQ3H18sDDUYw=')
24+
result = bootpay.get_access_token() # 토큰 얻어오기
25+
26+
receipt_id = '612e09260d681b0021e61ab9' # 검증할 결제 영수증 ID
27+
print(bootpay.verify(receipt_id)) # 결제검증하기
28+
```
29+
30+
## Documentation
31+
32+
[부트페이 개발매뉴얼](https://app.gitbook.com/@bootpay)을 참조해주세요
33+
34+
## 기술문의
35+
36+
[부트페이 홈페이지](https://www.bootpay.co.kr) 우측 하단 채팅을 통해 기술문의 주세요!
37+
38+
## License
39+
40+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
41+

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ plugins {
22
id 'java'
33
}
44

5-
group 'org.example'
6-
version '1.0-SNAPSHOT'
5+
group='com.github.bootpay'
6+
//version '1.0-SNAPSHOT'
77

88
repositories {
99
mavenCentral()

0 commit comments

Comments
 (0)