尝试连接到URL时curl_exec返回false

时间:2015-10-27 15:50:02

标签: php android

我正在尝试创建推送通知应用程序,该应用程序将从服务器向用户设备发送消息。

现在我得到注册ID但是当我运行curl_exec函数时,我收到以下错误:

Curl failed: couldn't connect to host

我不知道为什么会这样,我做了一些检查,当我尝试将网址更改为“google.com”时,通过了。 从我的浏览器,如果我尝试访问原始URL,它会将我重定向到: “https://developers.google.com/cloud-messaging/” 这是php代码:

    <?php
class GCM {

    function __construct() {

    }
    /**
     * Sending Push Notification
     */
    public function send_notification($registatoin_ids, $message) {
        // include config
        include_once 'connection.php';

        // Set POST variables
        $url = 'https://android.googleapis.com/gcm/send';

        $fields = array(
            'registration_ids' => $registatoin_ids,
            'data' => $message,
        );

        $headers = array(
            'Authorization: key=' .GOOGLE_API_KEY,
            'Content-Type: application/json'
        );
        // Open connection
        $ch = curl_init();

        // Set the url, number of POST vars, POST data
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4 );
        curl_setopt($ch, CURLOPT_POST, true);
        curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

        // Disabling SSL Certificate support temporarly
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

        curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));

        // Execute post
        $result = curl_exec($ch);
        if ($result === FALSE) {
            die('Curl failed: ' . curl_error($ch));
        }

        // Close connection
        curl_close($ch);
        echo $result;
    }
}
?>

1 个答案:

答案 0 :(得分:0)

我发现我的服务器包含阻止我的传出连接的防火墙。所以我打开它现在正在工作。 这是帮助我通过链接到相关答案来解决问题的解决方案。

CURL错误代码7(CURLE_COULDNT_CONNECT) 非常明确......这意味着无法连接()到主机或代理。

以下代码适用于任何系统:

$ch = curl_init("http://google.com");    // initialize curl handle
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
$data = curl_exec($ch);
print($data);

如果您看不到谷歌页面,那么..您的网址错误或者您有一些防火墙或限制问题

this link help me to resolve this issue