Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DynamicQRCode.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Before integrating with the SDK, run through this checklist:
Add this dependency to your project's build file:

```groovy
compile "jp.ne.paypay:paypayopa:1.0.8"
compile "jp.ne.paypay:paypayopa:1.0.9"
```
### Build your Client
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.
Expand Down
4 changes: 2 additions & 2 deletions PendingPayment.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ gradle install
<dependency>
<groupId>jp.ne.paypay</groupId>
<artifactId>paypayopa</artifactId>
<version>1.0.8</version>
<version>1.0.9</version>
<scope>compile</scope>
</dependency>
#Gradle: Add this dependency to your project's build file:
compile "jp.ne.paypay:paypayopa:1.0.8"
compile "jp.ne.paypay:paypayopa:1.0.9"
```
### Build your Client
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.
Expand Down
4 changes: 2 additions & 2 deletions PreAuthCapture.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ gradle install
<dependency>
<groupId>jp.ne.paypay</groupId>
<artifactId>paypayopa</artifactId>
<version>1.0.8</version>
<version>1.0.9</version>
<scope>compile</scope>
</dependency>
#Gradle: Add this dependency to your project's build file:
compile "jp.ne.paypay:paypayopa:1.0.8"
compile "jp.ne.paypay:paypayopa:1.0.9"
```
### Build your Client
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.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'

group = 'jp.ne.paypay'
version = '1.0.8'
version = '1.0.9'



Expand Down
2 changes: 1 addition & 1 deletion src/main/java/jp/ne/paypay/api/ApiConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ public class ApiConstants {
public static final String CONTENT_TYPE = "Content-Type";
public static final String USER_AUTHORIZATION_ID = "userAuthorizationId";
public static final String RESOLVE_BASE_URL = "https://developer.paypay.ne.jp/develop/resolve";
public static final String USER_AGENT = "PayPay-SDK/1.0.8/java";
public static final String USER_AGENT = "PayPay-SDK/1.0.9/java";
}
6 changes: 3 additions & 3 deletions src/test/java/jp/ne/paypay/api/ApiClientTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ public void configTest() throws ApiException{
Assert.assertNotNull(configuration.getDefaultApiClient());
Assert.assertNotNull(apiClient.getBasePath());
Assert.assertFalse(apiClient.isProductionMode());
Assert.assertEquals(apiClient.getBasePathProd(), "https://api.paypay.ne.jp");
Assert.assertEquals(apiClient.getBasePathSandbox(), "https://stg-api.sandbox.paypay.ne.jp");
Assert.assertEquals(ApiConstants.PROD_BASE_PATH, apiClient.getBasePathProd());
Assert.assertEquals(ApiConstants.SANDBOX_BASE_PATH, apiClient.getBasePathSandbox());
apiClient.setProductionMode(true);
Assert.assertEquals(apiClient.getBasePath(), "https://api.paypay.ne.jp");
Assert.assertEquals(ApiConstants.PROD_BASE_PATH, apiClient.getBasePath());
apiClient.setBasePathProd("prodUrl");
Assert.assertEquals(apiClient.getBasePathProd(), "prodUrl");
apiClient.setBasePathSandbox("sandboxUrl");
Expand Down
4 changes: 2 additions & 2 deletions userAuth.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ gradle install
<dependency>
<groupId>jp.ne.paypay</groupId>
<artifactId>paypayopa</artifactId>
<version>1.0.8</version>
<version>1.0.9</version>
<scope>compile</scope>
</dependency>
#Gradle: Add this dependency to your project's build file:
compile "jp.ne.paypay:paypayopa:1.0.8"
compile "jp.ne.paypay:paypayopa:1.0.9"
```
### Build your Client
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.
Expand Down
Loading