Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How to get GCM registration token in Android

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 576
    Comment on it

    GCM(Google Cloud Messaging) registration token is a kind of id given by the GCM connection server to user/client that allow user to receive messages. To get registration token first we have to generate a unique number, it can be created while configure your API project, now given as Project number in Google Developer Console.

    1. AsyncTask<Void, Void, String> task = new AsyncTask<Void, Void, String>() {
    2.  
    3. @Override
    4. protected void onPreExecute() {
    5. super.onPreExecute();
    6. }
    7.  
    8. @Override
    9. protected String doInBackground(Void... params) {
    10.  
    11. try {
    12. InstanceID instanceID = InstanceID.getInstance(context);
    13. token = instanceID.getToken(context.getResources().getString(R.string.gcm_defaultSenderId),
    14. GoogleCloudMessaging.INSTANCE_ID_SCOPE, null);
    15.  
    16. } catch (Exception e) {
    17.  
    18. Log.d("TAG", "Failed to get token", e);
    19. }
    20. return token;
    21. }
    22.  
    23. @Override
    24. protected void onPostExecute(String token) {
    25.  
    26. Log.i("GCM Registration Token:", token);
    27. }
    28. };
    29. task.execute();

     

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: