Can I use localhost to test the Facebook App. I have already tried with the following, but it comes up with no result.
I have tried with changing the windows host file which is under(path : c:/windows/system32/drivers/etc/), and then changing the httpd-vhosts.conf which you will find(path : xampp/apache/conf/extra/).
I have changed my localhost to local.sitename i.e http://local.sitename/ using the above.
Secondly, I tried use the following code
$ch = curl_init(); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
to stop the SSL verification.
Thirdly, I tried to put http://localhost:9000/ as call back url in Facebook App.
But I am getting the same error: SSL certificate problem.
Verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
Can anyone please help, I think localhost is the problem for testing facebook app, and note that I am working in cloud environment.
Could you please help me with testing my facebook app on localhost!
Thanks in advance.