Below is my code:
$method = "accounts.getJWTPublicKey";
$request = new GSRequest($apiKey, $secret, $method, '', true, $userkey);
$request->setAPIDomain("eu1.gigya.com");
$response = $request->send();
When it reached the send function, the error 500000 is displayed with the message
Could not connect to host.
Can't really find any solution to this on the internet. Some proposed solution that I have found on gigya was maybe I should:
- Use another Certificate - which can't be the problem because it works on my local and another server on which I was testing.
- A network misconfiguration! Can't find which misconfiguration might have caused this if any.
Had someone been through this and solved this issue?
I am using the PHP SDK given by gigya to communicate with gigya from drupal.