You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Having only a userkey instead of the api-secretkey will not allow to save config values in magento backend.
app/code/community/Gigya/Social/sdk/gigyaCMS.php
row 340:
public function testApiconfig() {
$request = new GSRequest($this->api_key, $this->api_secret, 'shortenURL');
will only use $this-api_secret and doesn´t care about user-secret.
As a result the call of the following line in Gigya_Social_Model_Config_Backend_ApiKey will throw an exception:
if ($apiError = $helper->utils->testApiconfig()) {
and no values will be saved. As a short test I disabled the call to testApiconfig() and then values will be saved.
The text was updated successfully, but these errors were encountered:
Having only a userkey instead of the api-secretkey will not allow to save config values in magento backend.
app/code/community/Gigya/Social/sdk/gigyaCMS.php
row 340:
public function testApiconfig() {
$request = new GSRequest($this->api_key, $this->api_secret, 'shortenURL');
will only use $this-api_secret and doesn´t care about user-secret.
As a result the call of the following line in Gigya_Social_Model_Config_Backend_ApiKey will throw an exception:
if ($apiError = $helper->utils->testApiconfig()) {
and no values will be saved. As a short test I disabled the call to testApiconfig() and then values will be saved.
The text was updated successfully, but these errors were encountered: