Gravity Forms Podio Integration Error

206 Views Asked by At

I'm trying to connect to Podio using Gravity Forms. I've generated an API key and added it on a Podio Integration field. However, upon authentication, I'm getting a PodioConnectionError.

Fatal error: Uncaught exception 'PodioConnectionError' with message 'Connection to Podio API failed: [60] SSL certificate problem: unable to get local issuer certificate' in /home/content/80/5825280/html/SITE_2017/wp-content/plugins/gravityformspodio/includes/podio-php/lib/Podio.php:261 Stack trace: #0 /home/content/80/5825280/html/SITE_2017/wp-content/plugins/gravityformspodio/includes/podio-php/lib/Podio.php(107): Podio::request('POST', '/oauth/token', Array, Array) #1 /home/content/80/5825280/html/SITE_2017/wp-content/plugins/gravityformspodio/includes/podio-php/lib/Podio.php(68): Podio::authenticate('authorization_c...', Array) #2 /home/content/80/5825280/html/SITE_2017/wp-content/plugins/gravityformspodio/includes/api/class-gfp-podio-api.php(121): Podio::authenticate_with_authorization_code('d390f383048b45f...', 'https://powerfu...') #3 /home/content/80/5825280/html/SITE_2017/wp-content/plugins/gravityformspodio/includes/class-gfp-podio-addon.php(396): GFP_Podio_API::finish_server_authentication('gravity-forms-p...', in /home/content/80/5825280/html/SITE_2017/wp-content/plugins/gravityformspodio/includes/podio-php/lib/Podio.php on line 261

Did anyone experience this issue before?

Thanks.

1

There are 1 best solutions below

0
On BEST ANSWER

Following Shawn's advise, I managed to solve this issue by following the provided solution on this question: SSL certificate error: unable to get local issuer certificate when authenticating with Podio

I used this plugin: https://wordpress.org/plugins/php-settings/ and added the following codes inside the field.

curl.cainfo = "/path-to-server/cacert.pem"
openssl.cafile="/path-to-server/cacert.pem"

I hope this will help others in need.

Thanks!