Skip to content

Commit d6b8a7b

Browse files
author
Shreyansh Pandey
authored
Merge pull request #82 from paypay/shrey
1.0.1
2 parents c89463a + eba2763 commit d6b8a7b

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

DynamicQRCode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Before integrating with the SDK, run through this checklist:
2727
Add this dependency to your project's build file:
2828

2929
```groovy
30-
compile "jp.ne.paypay:paypayopa:0.9.0"
30+
compile "jp.ne.paypay:paypayopa:1.0.1"
3131
```
3232
### Build your Client
3333
Build your client by adding your API Key and Secret like defined below. We enable API Authentication using HMAC, however the SDK will take care of the authentication by itself. [Click here](https://www.paypay.ne.jp/opa/doc/v1.0/dynamicqrcode#tag/Api-Authentication) if you want to know more about the authentication.

PendingPayment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ gradle install
3737
<dependency>
3838
<groupId>jp.ne.paypay</groupId>
3939
<artifactId>paypayopa</artifactId>
40-
<version>0.9.0</version>
40+
<version>1.0.1</version>
4141
<scope>compile</scope>
4242
</dependency>
4343
#Gradle: Add this dependency to your project's build file:
44-
compile "jp.ne.paypay:paypayopa:0.9.0"
44+
compile "jp.ne.paypay:paypayopa:1.0.1"
4545
```
4646
### Build your Client
4747
Build your client by adding your API Key and Secret like defined below. We enable API Authentication using HMAC, however the SDK will take care of the authentication by itself. [Click here](https://www.paypay.ne.jp/opa/doc/v1.0/pending_payments#tag/Api-Authentication) if you want to know more about the authentication.

PreAuthCapture.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ gradle install
3636
<dependency>
3737
<groupId>jp.ne.paypay</groupId>
3838
<artifactId>paypayopa</artifactId>
39-
<version>0.9.0</version>
39+
<version>1.0.1</version>
4040
<scope>compile</scope>
4141
</dependency>
4242
#Gradle: Add this dependency to your project's build file:
43-
compile "jp.ne.paypay:paypayopa:0.9.0"
43+
compile "jp.ne.paypay:paypayopa:1.0.1"
4444
```
4545
### Build your Client
4646
Build your client by adding your API Key and Secret like defined below. We enable API Authentication using HMAC, however the SDK will take care of the authentication by itself. [Click here](https://www.paypay.ne.jp/opa/doc/v1.0/preauth_capture#tag/Api-Authentication) if you want to know more about the authentication.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Building the API client library requires Gradle to be installed.
4747
Add this dependency to your project's build.gradle file:
4848

4949
```groovy
50-
compile "jp.ne.paypay:paypayopa:0.9.0"
50+
compile "jp.ne.paypay:paypayopa:1.0.1"
5151
```
5252

5353
## Getting Started

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ apply plugin: 'idea'
1212
apply plugin: 'eclipse'
1313

1414
group = 'jp.ne.paypay'
15-
version = '0.9.0'
15+
version = '1.0.1'
1616

1717

1818

src/main/java/jp/ne/paypay/api/ApiConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ public class ApiConstants {
1414
public static final String CONTENT_TYPE = "Content-Type";
1515
public static final String USER_AUTHORIZATION_ID = "userAuthorizationId";
1616
public static final String RESOLVE_BASE_URL = "https://developer.paypay.ne.jp/develop/resolve";
17-
public static final String USER_AGENT = "PayPay-SDK/0.9.0/java";
17+
public static final String USER_AGENT = "PayPay-SDK/1.0.1/java";
1818
}

userAuth.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ gradle install
1212
<dependency>
1313
<groupId>jp.ne.paypay</groupId>
1414
<artifactId>paypayopa</artifactId>
15-
<version>0.9.0</version>
15+
<version>1.0.1</version>
1616
<scope>compile</scope>
1717
</dependency>
1818
#Gradle: Add this dependency to your project's build file:
19-
compile "jp.ne.paypay:paypayopa:0.9.0"
19+
compile "jp.ne.paypay:paypayopa:1.0.1"
2020
```
2121
### Build your Client
2222
Build your client by adding your API Key and Secret like defined below. We enable API Authentication using HMAC, however the SDK will take care of the authentication by itself. [Click here](https://www.paypay.ne.jp/opa/doc/v1.0/pending_payments#tag/Api-Authentication) if you want to know more about the authentication.
@@ -79,4 +79,4 @@ For details of all the request and response parameters , check our [API Document
7979

8080
|Status |CodeId |Code |Message|
8181
|---|---|---|---|
82-
|401 || INVALID_USER_AUTHORIZATION_ID |The specified user authorization ID is invalid.|
82+
|401 || INVALID_USER_AUTHORIZATION_ID |The specified user authorization ID is invalid.|

0 commit comments

Comments
 (0)