From f4fe903907c2e17fa18e53c997f65eac3f86b427 Mon Sep 17 00:00:00 2001 From: Jeroen van Leusden Date: Mon, 21 Sep 2020 09:34:58 +0200 Subject: [PATCH] [#25] Clarify usage of custom access token path --- README.md | 4 ++-- composer.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ad947a3..342cf0e 100644 --- a/README.md +++ b/README.md @@ -39,8 +39,8 @@ To support multiple accounts you can create your own `ClientPool` and add multip new \BolCom\RetailerApi\Client(new \BolCom\RetailerApi\Client\ClientConfig('clientId1', 'clientSecret1')), - 'account2' => new \BolCom\RetailerApi\Client(new \BolCom\RetailerApi\Client\ClientConfig('clientId2', 'clientSecret2')), + 'account1' => new \BolCom\RetailerApi\Client(new \BolCom\RetailerApi\Client\ClientConfig('clientId1', 'clientSecret1', false, '/tmp/bol_access_token_clientId1.json')), + 'account2' => new \BolCom\RetailerApi\Client(new \BolCom\RetailerApi\Client\ClientConfig('clientId2', 'clientSecret2', false, '/tmp/bol_access_token_clientId2.json')), ]); $messageBus = new \BolCom\RetailerApi\Infrastructure\MessageBus($clientPool); diff --git a/composer.json b/composer.json index b3c65ba..68665bf 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "bol-com/retailer-api", "type": "library", - "version": "1.1.0", + "version": "1.1.1", "authors": [ { "name": "Reach Digital",