For some reason, when I try to connect to paypal sandbox API and do SetExpressCheckout using my XAMPP server it fails.
I turned error reporting on and this is the message I get:
Warning: file_get_contents(https://api-3t.sandbox.paypal.com/nvp/): failed to open stream: HTTP request failed! HTTP/1.0 403 Forbidden
I've done some tests and it just does not make sense:
I can connect to the live API with correct credentials.
I can connect to the live API with incorrect credentials.
I cannot connect to the sandbox API with correct or incorrect credentials.
I can connect to live API and sandbox API using web browser using correct or incorrect credentials.
If I put in an invalid website name, it gives me a different warning (below).
Warning:
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: No such host is known.
So why is it that when I connect to https://api-3t.sandbox.paypal.com/nvp/ using my local server there is no response? I have not changed the code and it still works with Paypal live so what's going on here suddenly?
From March 25 PayPal doesn't support HTTP/1.0, see details here. You can find helpfull this post
Related
I am trying to setup Instant Payment Notifications in paypal and am having trouble with POSTing back to tls://www.sandbox.paypal.com during the verification phase.
I am using the code found here: https://developer.paypal.com/docs/classic/ipn/gs_IPN/
Yet, when I try to connect I am receiving these errors:
PHP Warning: fsockopen(): SSL operation failed with code 1. OpenSSL Error messages:
error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure in /htdocs/test.php
fsockopen(): Failed to enable crypto in /htdocs/test.php
I have read the info here and it seems that I am trying to connect using the wrong protocol or I have the wrong cert installed. My OpenSSL is version 1.0.1e.
Unfortunately, I have no idea how to debug this or install the correct cert if necessary
You don't need to install an SSL certificate. It's just that the software stack on your server needs to be updated.
Check this guide on the POODLE Vulnerability for more details.
Hi please support to troubleshoot the below error in Wechat Sandbox API Config:
I am integrating Wechat API in PHP application. I have created a test account in Wechat Sandbox API. But when configuring the API with URL and token its shows "Unable to configure".
When checking the ajax response it throws : {"errcode":-106,"errmsg":"token check fail"}
Thank you.
I got the "Unable to configure" message when testing the Getting Started wiki sample too. Trying to reach wx_sample.php returned a 500 Internal Server Error.
It was fixed after changing the owners for my directory and file, after that the token could be set in the sandbox - 'API Config'.
I'm trying to use timetrex api, and for now I'm testing it using it's example in /timetrex/api/soap/api_client_example.php. but it returns "login failed" message although I'm using the correct username and password.
I checked the httpd error logs and it has the following message:
PHP Notice: SOAP Fault: (Code: HTTP, String: Could not connect to
host) - Request: Response: in
/var/www/html/timetrex/classes/modules/api/client/TimeTrexClientAPI.class.php
on line 157
Note that I'm using the following link to connect to the api:
http://192.168.x.x/timetrex/api/soap/api.php
How can I fine the problem and solve it?
I am working on Paypal with API as per ref of http://www.saaraan.com/2012/07/paypal-expresscheckout-with-php
I am getting the below error. i tested in Couple of Servers but not succeded. The problem occurs while sending request to Paypal in that code.
Error: SetExpressCheckout failed: Unknown SSL protocol error in
connection to api-3t.sandbox.paypal.com:443 (35)
I just follow same code from Facebook SDK example.
If FB App point to my local desktop, it will get Facebook uid and user basic information (ex email) if APP get permission from OAUTH request.
But when I upload files to server, executing $facebook->api('/me');
Fatal error: Uncaught CurlException: 28: connect() timed out! thrown in
/xxx/src/facebook.php on line 622
I still can't figure out why. It comes from CURL or SSL setting?
My remote server support SSL and CURL is enabled. My local is only CURL but no SSL support.
I think my Facebook SDK is old version, only facebook.php without base_facebook.php.
I try to use new version but can't run any program because crt error.
You get this error because your host cannot access the Facebook API. It might have an old version of Open SSL, can you check the current version on the server?
Try to connect using SSL from your local setup as well as it might be easier to debug on your local machine.
Also, see about that crt (CRC?) error and try to fix that first (don't shave too many Yak's though).