Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I dont know why am I getting a failure message when trying to send a multicast message to Android. I dont know if the problem is in the RegistrationId array which is sent or something in the CURL. But if it has something to do with the RegistrationID array, so this means that the array doesn't get filled. Can anyone please help me with this problem? Thanks in advance.

{"multicast_id":*******,"success":0,"failure":2,"canonical_ids":0,"results":[{"error":"MissingRegistration"},{"error":"MissingRegistration"}]}

Here is my PHP code

$apiKey = array();

    if($_POST['c'] == '1')
    {
        $row = mysql_fetch_array(mysql_query("SELECT Registration_id FROM stud WHERE c ='1' "));
            if($row)
            {

    echo("true");
            echo($row['Registration_id']);
            if($row['Registration_id']!=$regId)
            {   
                     $values = array_values($row);
                     foreach($values as $value)
            {
                $apiKey[] = $value;
            }
            }
send($message,$apiKey,$name);
            }


function send($message,$apiKey,$name)
{
echo("the message is "+$message);
$url = 'https://android.googleapis.com/gcm/send';

$fields = array(
        'registration_ids'  => $apiKey,
        'data'              => array( "message" => $message , "name"     =>$name),


);

    //print $apiKey;
$headers = array(
        'Authorization: key=' . "****",
        'Content-Type: application/json;charset=utf-8'
);


// 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 ) );


$result = curl_exec($ch);

// Close connection
curl_close($ch);

echo $result;




}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.