1

我的本地主机上有一些代码可以正常工作,但是当我将它们全部移到我的服务器时,它似乎不起作用。

我的服务器在防火墙后面,所以我决定使用 PHP 脚本来使用 GCM。同样,我在 localhost 上对其进行了全部测试,并且可以正常工作,但是在我的服务器上,什么都没有发送。

这是我的 PHP 脚本:

<?php
include('tools.php');
// Replace with real BROWSER API key from Google APIs
$apiKey = "xxxx";
// Replace with real client registration IDs 
//$registrationIDs = array($_POST['devices']);
$registrationIDs = $_POST['devices'];
$proxy = 'http://proxy.vmsrv.redbrick.dcu.ie:3128';

// Message to be sent
$message = $_POST['message'];

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

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

$headers = array( 
                    'Authorization: key=' . $apiKey,
                    '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_POST, true );
curl_setopt( $ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );

curl_setopt( $ch, CURLOPT_POSTFIELDS, json_encode( $fields ) );
curl_setopt( $ch, CURLOPT_PROXY, $proxy);
// Execute post
$result = curl_exec($ch);

// Close connection
curl_close($ch);

print_as_json($result);

// Report all PHP errors
error_reporting(-1);
?>

在我的 Java 程序调用脚本后,我在控制台中得到的唯一输出是:

[java] DB: Result: Warning: mysql_fetch_assoc() expects parameter 1 to be resource, string given in /var/www/tools.php on line 5[]

无论如何我可以尝试获取一些信息以找出问题所在???

编辑 工具.php

<?php

function print_as_json($result) {
    $all = array();
    while($r = mysql_fetch_assoc($result)) {
        $all[] = $r;
    }
    echo(json_encode($all));
}


?>
4

1 回答 1

1

删除线

print_as_json($result);

并改用简单的回声。

echo $result;

或者您可能想尝试查看它是什么类型的对象:

var_dump($result);

我不确定 $result 是什么样的。如果它是一个 json 字符串,你可以将它转换成一个数组:

$array = json_decode($result);
于 2013-04-06T21:29:22.923 回答