Skip to content
Open
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Steps to contribute:
5. Create a pull request for review to request merge.
6. Obtain approval before your changes can be merged.

Note: Before you submit the pull request, make sure to remove the keys and tokens from [ippdevkit.properties](https://github.com/intuit/QuickBooks-V3-Java-SDK/blob/master/ipp-v3-java-devkit/src/test/resources/ippdevkit.properties) that you might have added for testing.
Note: Before you submit the pull request, make sure to remove the keys and tokens from [ippdevkit.properties](https://github.com/intuit/QuickBooks-V3-Java-SDK/blob/master/ipp-v3-java-devkit/src/test/resources/ippdevkit.properties) that you might have added for testing. To populate the security tokens in staging environment for testing,create an account in https://developer.intuit.com and then create an app to get client id and client secret in keys and credentials tab of the app and to get access token and realm id navigate to playground in Myhub. App id is the testsuit.qbo.app.token, client id is the testsuit.qbo.consumer.key,client secret is the testsuit.qbo.consumer.secret, access token is the testsuit.qbo.access.token and realm id is the testsuit.qbo.realm.id. There is no value mapping to testsuit.qbo.access.token.secret.

Thank you for your contribution!

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ private static IPPHelper init() {
ippHelper.setQboConsumerKey(bundle.getString("testsuit.qbo.consumer.key"));
ippHelper.setQboConsumerSecret(bundle.getString("testsuit.qbo.consumer.secret"));
ippHelper.setQboAccessToken(bundle.getString("testsuit.qbo.access.token"));
ippHelper.setQboAccessTokenSecret(bundle.getString("testsuit.qbo.access.token.secret"));
// ippHelper.setQboAccessTokenSecret(bundle.getString("testsuit.qbo.access.token.secret"));
ippHelper.setQboRealmID(bundle.getString("testsuit.qbo.realm.id"));

Map<String, String> env = System.getenv();
Expand Down
2 changes: 1 addition & 1 deletion ipp-v3-java-devkit/src/test/resources/ippdevkit.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ testsuit.qbo.app.token =
testsuit.qbo.consumer.key =
testsuit.qbo.consumer.secret =
testsuit.qbo.access.token =
testsuit.qbo.access.token.secret =
#testsuit.qbo.access.token.secret =
testsuit.qbo.realm.id =


Expand Down