PHP के साथ GCM (Google क्लाउड मैसेजिंग)


213

अपडेट: जीसीएम को हटा दिया गया है, एफसीएम का उपयोग करें

मैं एक PHP बैकएंड में नए Google क्लाउड मैसेजिंग को कैसे एकीकृत कर सकता हूं ?



4
मैंने GCM- सर्वर के कार्यान्वयन के साथ एक छोटा ओओपी-पुस्तकालय लिखा है। आशा है कि यह किसी की मदद करेगा :) इसे GitHub पर देखें - github.com/CodeMonkeysRu/GCMMessage
iVariable

1
@HelmiB: मैंने वेबसाइट पर आपके कोड की कोशिश की, यह बिना किसी त्रुटि के निष्पादित होता है, लेकिन $ परिणाम खाली है। इसके अलावा संदेश वितरित नहीं होगा। क्रिप्या मेरि सहायता करे। मैं वास्तव में इसकी ज़रूरत हूँ।
user2064667

GCMMessage समर्थन एक्सपोनेंशियल बैकअप के लिए मेरा कांटा, जो Google के API का उपयोग करने के लिए अनिवार्य है। यह कतारबद्ध संदेशों के लिए एक रेडिस सर्वर का उपयोग करता है और नए एंडपॉइंट के साथ-साथ iOS का भी समर्थन करता है: github.com/stevetauber/php-gcm-queue
Steve Tauber

यह बहुत आसान है, आपको बस एक ऐप सर्वर, जीसीएम सर्वर और उस सेवा की मेजबानी करने वाला ऐप चाहिए। इस उदाहरण को देखें। यहाँ लोकलहोस्ट ऐप सर्वर फीलज़्डरॉइड.कॉम ​​2016
नारुतो

जवाबों:


236

यह कोड PHP CURL के माध्यम से कई पंजीकरण आईडी पर GCM संदेश भेजेगा।

// Payload data you want to send to Android device(s)
// (it will be accessible via intent extras)    
$data = array('message' => 'Hello World!');

// The recipient registration tokens for this notification
// https://developer.android.com/google/gcm/    
$ids = array('abc', 'def');

// Send push notification via Google Cloud Messaging
sendPushNotification($data, $ids);

function sendPushNotification($data, $ids) {
    // Insert real GCM API key from the Google APIs Console
    // https://code.google.com/apis/console/        
    $apiKey = 'abc';

    // Set POST request body
    $post = array(
                    'registration_ids'  => $ids,
                    'data'              => $data,
                 );

    // Set CURL request headers 
    $headers = array( 
                        'Authorization: key=' . $apiKey,
                        'Content-Type: application/json'
                    );

    // Initialize curl handle       
    $ch = curl_init();

    // Set URL to GCM push endpoint     
    curl_setopt($ch, CURLOPT_URL, 'https://gcm-http.googleapis.com/gcm/send');

    // Set request method to POST       
    curl_setopt($ch, CURLOPT_POST, true);

    // Set custom request headers       
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

    // Get the response back as string instead of printing it       
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

    // Set JSON post data
    curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($post));

    // Actually send the request    
    $result = curl_exec($ch);

    // Handle errors
    if (curl_errno($ch)) {
        echo 'GCM error: ' . curl_error($ch);
    }

    // Close curl handle
    curl_close($ch);

    // Debug GCM response       
    echo $result;
}

3
यह लगभग यहां काम कर रहा है, लेकिन मुझे फोन पर कोई संदेश नहीं मिला है। मैं इसे डिबग करना चाहता हूं, लेकिन मुझे नहीं पता कि मेरा $ परिणाम हमेशा खाली क्यों है ...
बर्ट्रेंड

9
मुझे पंजीकरण आईडी कहां मिल सकता है?
शेशु विनय

6
इस उत्तर के लिए धन्यवाद! अगर यह किसी के लिए उपयोगी है, तो मैंने इसे एक PHP ऑब्जेक्ट फ्रेमवर्क में रोल किया: github.com/kaiesh/GCM_PHP
Kaiesh

6
@ एसएसएल प्रमाणपत्र जांच को अक्षम करना हमेशा एक बुरा विचार है। अपने सर्वर एक SSL प्रमाणपत्र सत्यापित नहीं कर सकते, cURL क्या प्रमाण पत्र बताने के लिए उम्मीद के लिए इस तकनीक का उपयोग करें: unitstep.net/blog/2009/05/05/... या बल cURL का उपयोग कर cURL वेबसाइट से नवीनतम cacert.pem उपयोग करने के लिए इस तरह कुछ: gist.github.com/gboudreau/5206966
Guillaume बोउद्रेउ

4
इससे मदद मिली:curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4 );
zeusstl

34
<?php
    // Replace with the real server API key from Google APIs
    $apiKey = "your api key";

    // Replace with the real client registration IDs
    $registrationIDs = array( "reg id1","reg id2");

    // Message to be sent
    $message = "hi Shailesh";

    // 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_SSL_VERIFYPEER, false);
    // curl_setopt($ch, CURLOPT_POST, true);
    // curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode( $fields));

    // Execute post
    $result = curl_exec($ch);

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

3
हाय शैलेश गिरि, ब्राउज़र कुंजी का उपयोग करके अपने ठीक काम , लेकिन सर्वर कुंजी के मामले में, यह अनधिकृत त्रुटि 401 दिखाता है । कृपया क्या आप मेरी मदद कर सकते हैं।
सुशील कंडोला

सर्वर से अपेक्षित परिणाम क्या है? मुझे कोई प्रतिक्रिया नहीं मिल रही है! डिवाइस भी कोई संदेश नहीं दिखाता है।
शिलादित्य

3
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);एक बड़ा नहीं-नहीं है। यदि, किसी कारण से, इस PHP कोड को चलाने वाला आपका सर्वर Google के सर्वर द्वारा उपयोग किए गए SSL प्रमाणपत्र को सत्यापित नहीं कर सकता है, तो आप cURL को बता सकते हैं कि किसके साथ सत्यापन करना है। उदाहरण: unitstep.net/blog/2009/05/05/...
Guillaume बोउद्रेउ

18

यह करना आसान है। CURL कोड पेज है कि Elad नव यहाँ रखा काम करता है पर है। Elad ने उस त्रुटि के बारे में टिप्पणी की है जो उसे प्राप्त हो रही है।

उस प्राप्तकर्ता के लिए संदेश संसाधित करते समय हुई त्रुटि का वर्णन करते हुए स्ट्रिंग। उपरोक्त तालिका में दस्तावेज के रूप में संभव मान समान हैं, प्लस "अनुपलब्ध" (जिसका अर्थ है कि GCM सर्वर व्यस्त थे और उस विशेष प्राप्तकर्ता के लिए संदेश को संसाधित नहीं कर सकते थे, इसलिए इसे वापस लिया जा सकता था)।

मुझे एक सेवा पहले से ही मिल गई है जो काम कर रही है (ईश), और अब तक मैंने जो कुछ भी किया है, वह Google से अनुपलब्ध रिटर्न है। संभावना से अधिक यह जल्द ही बदल जाएगा।

प्रश्न का उत्तर देने के लिए, PHP का उपयोग करें, सुनिश्चित करें कि Zend फ्रेमवर्क आपके शामिल पथ में है, और इस कोड का उपयोग करें:

<?php
    ini_set('display_errors',1);
    include"Zend/Loader/Autoloader.php";
    Zend_Loader_Autoloader::getInstance();

    $url = 'https://android.googleapis.com/gcm/send';
    $serverApiKey = "YOUR API KEY AS GENERATED IN API CONSOLE";
    $reg = "DEVICE REGISTRATION ID";

    $data = array(
            'registration_ids' => array($reg),
            'data' => array('yourname' => 'Joe Bloggs')
    );

    print(json_encode($data));

    $client = new Zend_Http_Client($url);
    $client->setMethod('POST');
    $client->setHeaders(array("Content-Type" => "application/json", "Authorization" => "key=" . $serverApiKey));
    $client->setRawData(json_encode($data));
    $request = $client->request('POST');
    $body = $request->getBody();
    $headers = $request->getHeaders();
    print("<xmp>");
    var_dump($body);
    var_dump($headers);

एंड देयर वी हैव इट। Zend फ्रेमवर्क PHP में Googles नए GCM का उपयोग करने का एक कार्य (यह जल्द ही काम करेगा) उदाहरण।


9
भारी अद्यतन! IP प्रतिबंध के साथ API कुंजी सेट का उपयोग करने से स्पष्ट रूप से काम करने में विफल रहता है। मैंने बस सर्वर की साइड में अपनी एपीआई कुंजी को एपीआई कंसोल में कुंजी का उपयोग करने के लिए स्वैप किया था जिसे 'ब्राउज़र ऐप्स के लिए कुंजी (संदर्भकर्ताओं के साथ)' कहा जाता है और क्या लगता है! यह गुजर गया। यहाँ मैं वापस आ गया हूं: {"मल्टीकास्ट_ड": 8466657113827057558, "सफलता": 1, "असफलता": 0, "कैनोनिकल_आईडीएस": 0, "परिणाम": [{संदेश_आईडी ":" 0: 1341067903035991% 921c249a66df6166/16 }
रोजर थॉमस

1
अब यह बंद है। मुझे एक दिन में लगभग 3500 संदेश मिल रहे हैं और अब तक कोई समस्या नहीं है।
रोजर थॉमस

+1 Elad .. आपको सर्वर अनुप्रयोगों के लिए BROWSER एप्लिकेशन API कुंजी का उपयोग करना होगा! धन्यवाद Google, वास्तव में वहाँ मददगार: (कई घंटे बर्बाद)
जॉनी नट

13

एक लंबे समय के लिए खोज करने के बाद आखिरकार मैं यह पता लगाने में सक्षम हूं कि मुझे वास्तव में क्या चाहिए, सर्वर साइड स्क्रिप्टिंग भाषा के रूप में PHP का उपयोग करके जीसीएम से कनेक्ट करना, निम्नलिखित ट्यूटोरियल हमें एक स्पष्ट विचार देगा कि हमें जो कुछ भी शुरू करने की आवश्यकता है उसे कैसे सेटअप करना है। जीसीएम के साथ

Google क्लाउड मैसेजिंग (GCM), PHP और MySQL का उपयोग करके Android पुश सूचनाएं


10

मेरे पास वास्तव में यह काम अब मेरे Zend_Mobile पेड़ की एक शाखा में है: https://github.com/mwillbanks/Zend_Mobile/tree/feature/gcm

यह ZF 1.12 के साथ जारी किया जाएगा, हालांकि, आपको यह कैसे करना है पर कुछ महान उदाहरण देना चाहिए।

यहां एक त्वरित डेमो है कि यह कैसे काम करेगा ...।

<?php
require_once 'Zend/Mobile/Push/Gcm.php';
require_once 'Zend/Mobile/Push/Message/Gcm.php';

$message = new Zend_Mobile_Push_Message_Gcm();
$message->setId(time());
$message->addToken('ABCDEF0123456789');
$message->setData(array(
    'foo' => 'bar',
    'bar' => 'foo',
));

$gcm = new Zend_Mobile_Push_Gcm();
$gcm->setApiKey('MYAPIKEY');

$response = false;

try {
    $response = $gcm->send($message);
} catch (Zend_Mobile_Push_Exception $e) {
    // all other exceptions only require action to be sent or implementation of exponential backoff.
    die($e->getMessage());
}

// handle all errors and registration_id's
foreach ($response->getResults() as $k => $v) {
    if ($v['registration_id']) {
        printf("%s has a new registration id of: %s\r\n", $k, $v['registration_id']);
    }
    if ($v['error']) {
        printf("%s had an error of: %s\r\n", $k, $v['error']);
    }
    if ($v['message_id']) {
        printf("%s was successfully sent the message, message id is: %s", $k, $v['message_id']);
    }
}

1
ठीक! यह अच्छा है। लेकिन मैं उपयोगकर्ताओं का टोकन कैसे प्राप्त कर सकता हूं। मुझे लगता है कि आप पंजीकरण के रूप में टोकन का उपयोग कर रहे हैं। मेरे एंड्रॉइड ऐप में, सर्वर URL क्या होगा?
तस्मानी ०

हाँ टोकन पंजीकरण आईडी हैं; यह विशेष रूप से है क्योंकि पुस्तकालय कुछ सार रहने का प्रयास करता है क्योंकि यह APNS और MPNS को भी लागू करता है। सर्वर URL वह है जो आप बनाते हैं; यह बस भेजने के लिए गोंद प्रदान करता है, आपको एक क्षेत्र लिखना होगा जहां आप पंजीकरण आईडी को पोस्ट करेंगे और इसे कहीं पर सहेज सकते हैं। वहां से आप उपरोक्त कोड का उपयोग करके वास्तव में ऐप को एक पुश नोटिफिकेशन भेज सकते हैं।
mwillbanks

6

बहुत सारे ट्यूटोरियल पुराने हैं, और यहां तक ​​कि वर्तमान कोड का भी हिसाब नहीं है, जब डिवाइस के पंजीकरण के समय अपडेट होते हैं या डिवाइस अपंजीकृत होते हैं। यदि वे आइटम अनियंत्रित हो जाते हैं, तो यह अंततः उन मुद्दों का कारण होगा जो संदेशों को प्राप्त होने से रोकते हैं। http://forum.loungekatt.com/viewtopic.php?t=63#p181


6

इसके अलावा, आप कोड के इस टुकड़े की कोशिश कर सकते हैं, स्रोत :

<?php
    define("GOOGLE_API_KEY", "AIzaSyCJiVkatisdQ44rEM353PFGbia29mBVscA");
    define("GOOGLE_GCM_URL", "https://android.googleapis.com/gcm/send");

    function send_gcm_notify($reg_id, $message) {
        $fields = array(
            'registration_ids'  => array( $reg_id ),
            'data'              => array( "message" => $message ),
        );

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

        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, GOOGLE_GCM_URL);
        curl_setopt($ch, CURLOPT_POST, true);
        curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));

        $result = curl_exec($ch);
        if ($result === FALSE) {
            die('Problem occurred: ' . curl_error($ch));
        }

        curl_close($ch);
        echo $result;
    }

    $reg_id = "APA91bHuSGES.....nn5pWrrSz0dV63pg";
    $msg = "Google Cloud Messaging working well";

    send_gcm_notify($reg_id, $msg);

आपका कोड त्रुटि दिखाता है "समस्या उत्पन्न हुई: 74.125.142.95 से कनेक्ट करने में विफल: अनुमति अस्वीकृत"। क्या समस्या है?
user2064667

4
<?php

function sendMessageToPhone($deviceToken, $collapseKey, $messageText, $yourKey) {    
    echo "DeviceToken:".$deviceToken."Key:".$collapseKey."Message:".$messageText
            ."API Key:".$yourKey."Response"."<br/>";

    $headers = array('Authorization:key=' . $yourKey);    
    $data = array(    
        'registration_id' => $deviceToken,          
        'collapse_key' => $collapseKey,
        'data.message' => $messageText);  
    $ch = curl_init();    

    curl_setopt($ch, CURLOPT_URL, "https://android.googleapis.com/gcm/send");    
    if ($headers)    
        curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);    
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);    
    curl_setopt($ch, CURLOPT_POST, true);    
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);    
    curl_setopt($ch, CURLOPT_POSTFIELDS, $data);    

    $response = curl_exec($ch);    
    var_dump($response);
    $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);    
    if (curl_errno($ch)) {
        return false;
    }    
    if ($httpCode != 200) {
        return false;
    }    
    curl_close($ch);    
    return $response;    
}  

$yourKey = "YOURKEY";
$deviceToken = "REGISTERED_ID";
$collapseKey = "COLLAPSE_KEY";
$messageText = "MESSAGE";
echo sendMessageToPhone($deviceToken, $collapseKey, $messageText, $yourKey);
?>

उपरोक्त स्क्रिप्ट में केवल परिवर्तन:

एपीआई कुंजी के सर्वर कुंजी के लिए एपीआई "कुंजी"।
आपके डिवाइस के पंजीकरण आईडी
"COLLAPSE_KEY" के साथ "REGISTERED_ID" जिसकी आपको आवश्यकता है
"संदेश के साथ" संदेश के साथ जिसे आप भेजना चाहते हैं

अगर आपको इसमें कोई समस्या हो रही है तो मुझे बताएं मैं उसी स्क्रिप्ट का उपयोग करके सफलतापूर्वक अधिसूचना प्राप्त करने में सक्षम हूं।


2

आप पैकगिस्ट पर उपलब्ध इस PHP लाइब्रेरी का उपयोग कर सकते हैं:

https://github.com/CoreProc/gcm-php

इसे स्थापित करने के बाद आप ऐसा कर सकते हैं:

$gcmClient = new GcmClient('your-gcm-api-key-here');

$message = new Message($gcmClient);

$message->addRegistrationId('xxxxxxxxxx');
$message->setData([
    'title' => 'Sample Push Notification',
    'message' => 'This is a test push notification using Google Cloud Messaging'
]);

try {

    $response = $message->send();

    // The send() method returns a Response object
    print_r($response);

} catch (Exception $exception) {

    echo 'uh-oh: ' . $exception->getMessage();

}

0

यहाँ एक पुस्तकालय है जिसे मैंने कोडमॉन्कसआरयू से लिया था।

मैंने जो कारण बताया वह इसलिए था क्योंकि Google को घातीय बैकऑफ़ की आवश्यकता है। मैं संदेशों को कतारबद्ध करने और एक निर्धारित समय के बाद पुनः भेजने के लिए एक रेडिस सर्वर का उपयोग करता हूं।

मैंने इसे iOS का समर्थन करने के लिए भी अपडेट किया है।

https://github.com/stevetauber/php-gcm-queue


नमस्कार क्या आप कृपया मुझे iOS के लिए किए गए परिवर्तनों की ओर इशारा कर सकते हैं, मैं वास्तव में मूल पुस्तकालय की तुलना में कुछ विशेष नहीं देखता हूं।
फ्रालबो

@ 2ndGAB प्राथमिक कारण जो मैंने बताया था वह घातीय बैकऑफ़ था। जैसा कि iOS में परिवर्तन होता है, आप उनके बारे में यहां पढ़ सकते हैं: Developers.google.com/cloud-messaging/…
स्टीव ट्यूबर

0

यहाँ @Elad Nava द्वारा पोस्ट किए गए ऊपर के PHP कोड के लिए Android कोड है

MainActivity.java (लॉन्चर गतिविधि)

public class MainActivity extends AppCompatActivity {
    String PROJECT_NUMBER="your project number/sender id";
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);



        GCMClientManager pushClientManager = new GCMClientManager(this, PROJECT_NUMBER);
        pushClientManager.registerIfNeeded(new GCMClientManager.RegistrationCompletedHandler() {
            @Override
            public void onSuccess(String registrationId, boolean isNewRegistration) {

                Log.d("Registration id", registrationId);
                //send this registrationId to your server
            }

            @Override
            public void onFailure(String ex) {
                super.onFailure(ex);
            }
        });
    }
}

GCMClientManager.java

public class GCMClientManager {
    // Constants
    public static final String TAG = "GCMClientManager";
    public static final String EXTRA_MESSAGE = "message";
    public static final String PROPERTY_REG_ID = "your sender id";
    private static final String PROPERTY_APP_VERSION = "appVersion";
    private final static int PLAY_SERVICES_RESOLUTION_REQUEST = 9000;
    // Member variables
    private GoogleCloudMessaging gcm;
    private String regid;
    private String projectNumber;
    private Activity activity;
    public GCMClientManager(Activity activity, String projectNumber) {
        this.activity = activity;
        this.projectNumber = projectNumber;
        this.gcm = GoogleCloudMessaging.getInstance(activity);
    }
    /**
     * @return Application's version code from the {@code PackageManager}.
     */
    private static int getAppVersion(Context context) {
        try {
            PackageInfo packageInfo = context.getPackageManager()
                    .getPackageInfo(context.getPackageName(), 0);
            return packageInfo.versionCode;
        } catch (NameNotFoundException e) {
            // should never happen
            throw new RuntimeException("Could not get package name: " + e);
        }
    }
    // Register if needed or fetch from local store
    public void registerIfNeeded(final RegistrationCompletedHandler handler) {
        if (checkPlayServices()) {
            regid = getRegistrationId(getContext());
            if (regid.isEmpty()) {
                registerInBackground(handler);
            } else { // got id from cache
                Log.i(TAG, regid);
                handler.onSuccess(regid, false);
            }
        } else { // no play services
            Log.i(TAG, "No valid Google Play Services APK found.");
        }
    }
    /**
     * Registers the application with GCM servers asynchronously.
     * <p>
     * Stores the registration ID and app versionCode in the application's
     * shared preferences.
     */
    private void registerInBackground(final RegistrationCompletedHandler handler) {
        new AsyncTask<Void, Void, String>() {
            @Override
            protected String doInBackground(Void... params) {
                try {
                    if (gcm == null) {
                        gcm = GoogleCloudMessaging.getInstance(getContext());
                    }
                    InstanceID instanceID = InstanceID.getInstance(getContext());
                    regid = instanceID.getToken(projectNumber, GoogleCloudMessaging.INSTANCE_ID_SCOPE, null);
                    Log.i(TAG, regid);
                    // Persist the regID - no need to register again.
                    storeRegistrationId(getContext(), regid);
                } catch (IOException ex) {
                    // If there is an error, don't just keep trying to register.
                    // Require the user to click a button again, or perform
                    // exponential back-off.
                    handler.onFailure("Error :" + ex.getMessage());
                }
                return regid;
            }
            @Override
            protected void onPostExecute(String regId) {
                if (regId != null) {
                    handler.onSuccess(regId, true);
                }
            }
        }.execute(null, null, null);
    }
    /**
     * Gets the current registration ID for application on GCM service.
     * <p>
     * If result is empty, the app needs to register.
     *
     * @return registration ID, or empty string if there is no existing
     *     registration ID.
     */
    private String getRegistrationId(Context context) {
        final SharedPreferences prefs = getGCMPreferences(context);
        String registrationId = prefs.getString(PROPERTY_REG_ID, "");
        if (registrationId.isEmpty()) {
            Log.i(TAG, "Registration not found.");
            return "";
        }
        // Check if app was updated; if so, it must clear the registration ID
        // since the existing regID is not guaranteed to work with the new
        // app version.
        int registeredVersion = prefs.getInt(PROPERTY_APP_VERSION, Integer.MIN_VALUE);
        int currentVersion = getAppVersion(context);
        if (registeredVersion != currentVersion) {
            Log.i(TAG, "App version changed.");
            return "";
        }
        return registrationId;
    }
    /**
     * Stores the registration ID and app versionCode in the application's
     * {@code SharedPreferences}.
     *
     * @param context application's context.
     * @param regId registration ID
     */
    private void storeRegistrationId(Context context, String regId) {
        final SharedPreferences prefs = getGCMPreferences(context);
        int appVersion = getAppVersion(context);
        Log.i(TAG, "Saving regId on app version " + appVersion);
        SharedPreferences.Editor editor = prefs.edit();
        editor.putString(PROPERTY_REG_ID, regId);
        editor.putInt(PROPERTY_APP_VERSION, appVersion);
        editor.commit();
    }
    private SharedPreferences getGCMPreferences(Context context) {
        // This sample app persists the registration ID in shared preferences, but
        // how you store the regID in your app is up to you.
        return getContext().getSharedPreferences(context.getPackageName(),
                Context.MODE_PRIVATE);
    }
    /**
     * Check the device to make sure it has the Google Play Services APK. If
     * it doesn't, display a dialog that allows users to download the APK from
     * the Google Play Store or enable it in the device's system settings.
     */
    private boolean checkPlayServices() {
        int resultCode = GooglePlayServicesUtil.isGooglePlayServicesAvailable(getContext());
        if (resultCode != ConnectionResult.SUCCESS) {
            if (GooglePlayServicesUtil.isUserRecoverableError(resultCode)) {
                GooglePlayServicesUtil.getErrorDialog(resultCode, getActivity(),
                        PLAY_SERVICES_RESOLUTION_REQUEST).show();
            } else {
                Log.i(TAG, "This device is not supported.");
            }
            return false;
        }
        return true;
    }
    private Context getContext() {
        return activity;
    }
    private Activity getActivity() {
        return activity;
    }
    public static abstract class RegistrationCompletedHandler {
        public abstract void onSuccess(String registrationId, boolean isNewRegistration);
        public void onFailure(String ex) {
            // If there is an error, don't just keep trying to register.
            // Require the user to click a button again, or perform
            // exponential back-off.
            Log.e(TAG, ex);
        }
    }
}

PushNotificationService.java (अधिसूचना जनरेटर)

public class PushNotificationService extends GcmListenerService{

    public static int MESSAGE_NOTIFICATION_ID = 100;

    @Override
    public void onMessageReceived(String from, Bundle data) {
        String message = data.getString("message");
        sendNotification("Hi-"+message, "My App sent you a message");
    }

    private void sendNotification(String title, String body) {
        Context context = getBaseContext();
        NotificationCompat.Builder mBuilder = (NotificationCompat.Builder) new NotificationCompat.Builder(context)
                .setSmallIcon(R.mipmap.ic_launcher).setContentTitle(title)
                .setContentText(body);
        NotificationManager mNotificationManager = (NotificationManager) context
                .getSystemService(Context.NOTIFICATION_SERVICE);
        mNotificationManager.notify(MESSAGE_NOTIFICATION_ID, mBuilder.build());
    }
}

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<permission android:name="com.example.gcm.permission.C2D_MESSAGE"
    android:protectionLevel="signature" />
<uses-permission android:name="com.example.gcm.permission.C2D_MESSAGE" />
<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme" >
    <activity android:name=".MainActivity" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <service
        android:name=".PushNotificationService"
        android:exported="false">
        <intent-filter>
            <action android:name="com.google.android.c2dm.intent.RECEIVE" />
        </intent-filter>
    </service>

    <receiver
        android:name="com.google.android.gms.gcm.GcmReceiver"
        android:exported="true"
        android:permission="com.google.android.c2dm.permission.SEND">
        <intent-filter>
            <action android:name="com.google.android.c2dm.intent.RECEIVE" />
            <category android:name="package.gcmdemo" />
        </intent-filter>
    </receiver>
</application>


0

इसे इस्तेमाल करो

 function pnstest(){

                $data = array('post_id'=>'12345','title'=>'A Blog post', 'message' =>'test msg');

                $url = 'https://fcm.googleapis.com/fcm/send';

                $server_key = 'AIzaSyDVpDdS7EyNgMUpoZV6sI2p-cG';

                $target ='fO3JGJw4CXI:APA91bFKvHv8wzZ05w2JQSor6D8lFvEGE_jHZGDAKzFmKWc73LABnumtRosWuJx--I4SoyF1XQ4w01P77MKft33grAPhA8g-wuBPZTgmgttaC9U4S3uCHjdDn5c3YHAnBF3H';

                $fields = array();
                $fields['data'] = $data;
                if(is_array($target)){
                    $fields['registration_ids'] = $target;
                }else{
                    $fields['to'] = $target;
                }

                //header with content_type api key
                $headers = array(
                    'Content-Type:application/json',
                  'Authorization:key='.$server_key
                );

                $ch = curl_init();
                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_SSL_VERIFYHOST, 0);
                curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
                curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
                $result = curl_exec($ch);
                if ($result === FALSE) {
                    die('FCM Send Error: ' . curl_error($ch));
                }
                curl_close($ch);
                return $result;

}

0

मुझे पता है कि यह एक देर से उत्तर है, लेकिन यह उन लोगों के लिए उपयोगी हो सकता है जो वर्तमान एफसीएम प्रारूप (जीसीएम को हटा दिया गया है) के साथ इसी तरह के ऐप विकसित करना चाहते हैं।
विषयवार पॉडकास्ट भेजने के लिए निम्न PHP कोड का उपयोग किया गया है। उल्लिखित चैनल / टॉपिस के साथ पंजीकृत सभी ऐप्स को यह पुश सूचना मिलेगी।

<?php

try{
$fcm_token = 'your fcm token';
$service_url = 'https://fcm.googleapis.com/fcm/send';
$channel = '/topics/'.$adminChannel;
echo $channel.'</br>';
      $curl_post_body = array('to' => $channel,
        'content_available' => true,
        'notification' => array('click_action' => 'action_open',
                            'body'=> $contentTitle,
                            'title'=>'Title '.$contentCurrentCat. ' Updates' ,
                            'message'=>'44'),
        'data'=> array('click_action' => 'action_open',
                            'body'=>'test',
                            'title'=>'test',
                            'message'=>$catTitleId));

        $headers = array(
        'Content-Type:application/json',
        'Authorization:key='.$fcm_token);

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $service_url);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($curl_post_body));

    $result = curl_exec($ch);
    if ($result === FALSE) {
        die('FCM Send Error: ' . curl_error($ch));
        echo 'failure';
    }else{

    echo 'success' .$result;
    }
    curl_close($ch);
    return $result;

}
catch(Exception $e){

    echo 'Message: ' .$e->getMessage();
}
?>
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.