Skip to content

Commit

Permalink
Version 2.3.4 (#36)
Browse files Browse the repository at this point in the history
* Release version 2.3.2

* Update composer.json

* Update composer.json

* Fix Amazon auth class mistake

* Update composer.json
  • Loading branch information
haitv282 authored May 8, 2017
1 parent 6e962f1 commit 1481bc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Model/Providers/Amazon.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function initialize() {
}

// create a new OAuth2 client instance
$this->api = \Magento\Framework\App\ObjectManager::getInstance()->create('Mageplaza\SocialLogin\Model\Providers\Amazon', ['client_id' => $this->config['keys']['id'], 'client_secret' => $this->config['keys']['secret'], 'redirect_uri' => $this->endpoint, 'compressed' => $this->compressed]);
$this->api = \Magento\Framework\App\ObjectManager::getInstance()->create('Mageplaza\SocialLogin\Model\Providers\Amazon\AmazonOAuth2Client', ['client_id' => $this->config['keys']['id'], 'client_secret' => $this->config['keys']['secret'], 'redirect_uri' => $this->endpoint, 'compressed' => $this->compressed]);

$this->api->api_base_url = 'https://api.amazon.com';
$this->api->authorize_url = 'https://www.amazon.com/ap/oa';
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"hybridauth/hybridauth": "2.9.1"
},
"type": "magento2-module",
"version": "2.3.3",
"version": "2.3.4",
"license": [
"OSL-3.0",
"AFL-3.0"
Expand Down

0 comments on commit 1481bc8

Please sign in to comment.