Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using GCM service in my android app.

  1. Signup in Google API console, got the projectID(senderID) and API key(Browser key).

  2. Created new app with code below.

Client code:
MainActivity

GCMRegistrar.checkDevice(this);
        GCMRegistrar.checkManifest(this);
        final String regId = GCMRegistrar.getRegistrationId(this);
        if (regId.equals("")) {
          GCMRegistrar.register(this, senderID);
        } else {
          Log.v(TAG, "Already registered");
        }

GCMIntentService code:

 public class GCMIntentService extends GCMBaseIntentService {


    private static final String TAG = "GCMIntentService";


    public GCMIntentService() {
        super(SENDER_ID);
    }

    @Override
    protected void onRegistered(Context context, String registrationId) {
        Log.i(TAG, "Device registered: regId = " + registrationId);
        displayMessage(context, getString(R.string.gcm_registered));

    }
   @Override
    protected void onUnregistered(Context context, String registrationId) {
        Log.i(TAG, "Device unregistered");
        displayMessage(context, getString(R.string.gcm_unregistered));

    }

    @Override
    protected void onMessage(Context context, Intent intent) {
        Log.i(TAG, "Received message");
        String message = getString(R.string.gcm_message);
        displayMessage(context, message);
        generateNotification(context, message);
    }

    @Override
    protected void onDeletedMessages(Context context, int total) {
        Log.i(TAG, "Received deleted messages notification");
        String message = getString(R.string.gcm_deleted, total);
       displayMessage(context, message);
       generateNotification(context, message);
    }

    @Override
    public void onError(Context context, String errorId) {
        Log.i(TAG, "Received error: " + errorId);
        displayMessage(context, getString(R.string.gcm_error, errorId));
    }

    @Override
    protected boolean onRecoverableError(Context context, String errorId) {
        // log message
        Log.i(TAG, "Received recoverable error: " + errorId);
       displayMessage(context, getString(R.string.gcm_recoverable_error,
                errorId));
        return super.onRecoverableError(context, errorId);
    }

    static void displayMessage(Context context, String message) {
        Intent intent = new Intent(DISPLAY_MESSAGE_ACTION);
        intent.putExtra(EXTRA_MESSAGE, message);
        context.sendBroadcast(intent);
    }

        static final String EXTRA_MESSAGE = "message";
        static final String DISPLAY_MESSAGE_ACTION =
            "com.google.android.gcm.demo.app.DISPLAY_MESSAGE";

    private static void generateNotification(Context context, String message) {
        int icon = R.drawable.ic_launcher;
        long when = System.currentTimeMillis();
        NotificationManager notificationManager = (NotificationManager)
                context.getSystemService(Context.NOTIFICATION_SERVICE);
        Notification notification = new Notification(icon, message, when);
        String title = context.getString(R.string.app_name);
        Intent notificationIntent = new Intent(context, MainActivity.class);
        // set intent so it does not start a new activity
        notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP |
                Intent.FLAG_ACTIVITY_SINGLE_TOP);
        PendingIntent intent =
                PendingIntent.getActivity(context, 0, notificationIntent, 0);
        notification.setLatestEventInfo(context, title, message, intent);
        notification.flags |= Notification.FLAG_AUTO_CANCEL;
        notificationManager.notify(0, notification);
    }

Manifest file:

 <uses-sdk
            android:minSdkVersion="8"
            android:targetSdkVersion="16"  />
        <uses-permission android:name="android.permission.INTERNET"/>

        <permission android:name="com.example.samplegcm.permission.C2D_MESSAGE"            
            android:protectionLevel="signature" />
        <uses-permission android:name="com.example.samplegcm.permission.C2D_MESSAGE" /> 
        <!-- App receives GCM messages. -->
        <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />

    <!-- GCM requires a Google account. -->
        <uses-permission android:name="android.permission.GET_ACCOUNTS" />
    <!-- Keeps the processor from sleeping when a message is received. -->
        <uses-permission android:name="android.permission.WAKE_LOCK" />

        <application
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name"
            android:theme="@style/AppTheme" >
            <activity
                android:name=".MainActivity"
                android:label="@string/title_activity_main" >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />

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

            <receiver android:name="com.google.android.gcm.GCMBroadcastReceiver" 
                android:permission="com.google.android.c2dm.permission.SEND" >
              <intent-filter>
               <action android:name="com.google.android.c2dm.intent.RECEIVE" />
               <action android:name="com.google.android.c2dm.intent.REGISTRATION" />
               <category android:name="com.example.samplegcm" />
              </intent-filter>
            </receiver>

           <service android:name=".GCMIntentService" /> 
        </application>

3.The gcm.jar is added to libs folder. Executed and successfully got registerId.

4.Created another new app for server side.

5.Added gcm-server.jar file to libs folder.

code for server side:

public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_gcmserver);
        regID = (EditText)findViewById(R.id.editText1);
        data1 =(EditText)findViewById(R.id.editText3);
        data2 =(EditText)findViewById(R.id.editText4);
        btn1 = (Button)findViewById(R.id.button1);
        btn1.setOnClickListener(new View.OnClickListener() {

                @Override
                public void onClick(View v) {
                    sendmessage2Device(v, regID.toString(), data1.getText().toString(), data2.getText().toString());


                }
            });

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_gcmserver, menu);
        return true;
    }
    public void sendmessage2Device(View v,String regisID,String msg1,String msg2) {

            HttpClient client = new DefaultHttpClient();
            HttpPost post = new HttpPost(
                    "https://android.googleapis.com/gcm/send");


            try {

                List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
                nameValuePairs.add(new     BasicNameValuePair("registration_id",regisID));

                nameValuePairs.add(new BasicNameValuePair("data1",msg1));
                nameValuePairs.add(new BasicNameValuePair("data2", msg2));

        post.setHeader("Authorization","key=AIzaxxxxxxxxxxxxxxxxxxxxxxx134");
                post.setHeader("Content-Type", "application/x-www-form-urlencoded;charset=UTF-8");

            post.setEntity(new UrlEncodedFormEntity(nameValuePairs));
                HttpResponse response = client.execute(post);
                InputStreamReader inputst = new InputStreamReader(response.getEntity().getContent());
                BufferedReader rd = new BufferedReader(inputst);


                String line = "";
                while ((line = rd.readLine()) != null) {
                    Log.e("HttpResponse", line);


                        String s = line.substring(0);
                        Log.i("GCM response",s);
                }

            } catch (IOException e) {
                e.printStackTrace();
            }

These are the steps and code for GCM which I have used. The problem is when I am excecuting the server side code. I am not getting notifications from server and getting logcat(server side) like this:

12-10 15:09:40.371: I/global(945): Default buffer size used in BufferedReader constructor. It would be better to be explicit if an 8k-char buffer is required.
12-10 15:09:40.381: E/HttpResponse(945): id=0:1355132381549743%77148e76f9fd7

I don't know what is the problem here. Am I doing something wrong in client or server side?

share|improve this question
Have you tried using a server key instead of the browser key? They're both supposed to work, but I only tested it with a server key. As for the response you got, the HTTP Response (id=...) is the response you get after a successful delivery of the message. I don't know what's the meaning of the other log line. – Eran Dec 10 '12 at 13:32
Is the server app also an Android app? How do you pass the registration id to it? – Eran Dec 10 '12 at 13:37
thanks fr reply.I used browser key and server code is also in android.I am passing regID through edittext(4th line from server code top). – Tej Dec 10 '12 at 15:08
@Eran..In some of codes there are using "server_url" to get notifications(client-side).What it means?how to create it?Is it help me? – Tej Dec 10 '12 at 15:15
What 'codes' are you referring to? I never tried sending a GCM from one application to another application. Perhaps it can work for testing purposes, but in a real application you need a web server - the application will send the registration id to the server and the server will send messages to the registered applications. – Eran Dec 10 '12 at 17:57
show 2 more comments

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.