We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hi i have a problem when i curl api and i get below error: "Failed to connect to www.coinex.com port 443: Connection refused7" my code is :
$ch = curl_init(); curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4); curl_setopt($ch, CURLOPT_URL, "https://api.coinex.com/v1/market/list"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); if ($disableSSl) { curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); } curl_setopt($ch, CURLOPT_TIMEOUT, 30000); curl_setopt($ch, CURLOPT_ENCODING, ''); curl_setopt($ch, CURLOPT_REFERER, "http://www.google.com.com/"); curl_setopt($ch, CURLOPT_HEADER, false); $t = curl_error($ch); curl_close($ch);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
hi i have a problem when i curl api and i get below error:
"Failed to connect to www.coinex.com port 443: Connection refused7"
my code is :
The text was updated successfully, but these errors were encountered: