Skip to content

Commit e8c3f16

Browse files
Merge branch 'release/1.13.1'
2 parents 9392452 + 81cde5a commit e8c3f16

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group 'com.bunq.sdk'
2-
version '1.13.0'
2+
version '1.13.1'
33

44
apply plugin: 'java'
55
apply plugin: 'maven'

src/main/java/com/bunq/sdk/context/ApiEnvironmentType.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public enum ApiEnvironmentType {
1313
SANDBOX(
1414
"public-api.sandbox.bunq.com",
1515
"v1",
16-
"sha256/9Y+oZve6H+r17Kdn+lN5sT0ijgxLyDGIuQtUwLupawA="
16+
"sha256/SEJfjAW74vHQmGe/lb9NwBjzAw5y7rpJH3UWpGE5q8A="
1717
);
1818

1919
/**

src/main/java/com/bunq/sdk/http/BunqHeader.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public enum BunqHeader {
1818
LANGUAGE("X-Bunq-Language", "en_US"),
1919
REGION("X-Bunq-Region", "nl_NL"),
2020
SERVER_SIGNATURE("X-Bunq-Server-Signature"),
21-
USER_AGENT("User-Agent", "bunq-sdk-java/1.13.0");
21+
USER_AGENT("User-Agent", "bunq-sdk-java/1.13.1");
2222

2323
private static final String PREFIX = "X-Bunq-";
2424

src/main/java/com/bunq/sdk/model/core/OauthAccessToken.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ public class OauthAccessToken extends BunqModel {
3939
/**
4040
* Token constants.
4141
*/
42-
protected static final String TOKEN_URI_FORMAT_SANDBOX = "https://api.oauth.bunq.com/v1/token?%s";
43-
protected static final String TOKEN_URI_FORMAT_PRODUCTION = "https://api.oauth.sandbox.bunq.com/v1/token?%s";
42+
protected static final String TOKEN_URI_FORMAT_SANDBOX = "https://api-oauth.sandbox.bunq.com/v1/token?%s";
43+
protected static final String TOKEN_URI_FORMAT_PRODUCTION = "https://api.oauth.bunq.com/v1/token?%s";
4444

4545
/**
4646
* Error constants.

0 commit comments

Comments
 (0)