Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/zirouan/gcm

Projeto utilizando GCM
https://github.com/zirouan/gcm

Last synced: about 1 month ago
JSON representation

Projeto utilizando GCM

Awesome Lists containing this project

README

        

# Gcm

O que devo alterar antes de testar o projeto?

1 - No arquivo string.xml você irá alterar os atributos "sender_id" e "sender url".
```xml
Project number - Google API console
http://[your URL]/
````

2 - Na classe "GcmHelper.java" você irá criar a sua rotina de registro no método "toSendRegistrationIdServer"
```java
private static void toSendRegistrationIdServer(final Context context, final String key,
final TheRegisterDevice listener) throws IOException {

Retrofit retrofit = new Retrofit.Builder()
.baseUrl(context.getString(R.string.sender_url))
.addConverterFactory(GsonConverterFactory.create())
.build();

GcmRetrofit gcmRetrofit = retrofit.create(GcmRetrofit.class);
Call venuesCall = gcmRetrofit.toSendRegistration("registrar", key);
venuesCall.enqueue(new Callback() {

@Override
public void onResponse(retrofit.Response response, Retrofit retrofit) {

if (response != null){
saveRegistrationId(context, key);
listener.toRegister(key, true);
}
}

@Override
public void onFailure(Throwable t) {
}
});
}
````

3 - Na classe "GcmRetrofit.java" você irá informar os parametros utilizado para efetuar o registro
```java
public interface GcmRetrofit {
@FormUrlEncoded
@POST("gcmserver.php")
Call toSendRegistration(@Field("acao") String action,
@Field("regId") String id);
}
````
4 - Caso não tenho um back-end pronto, você pode utilizar o arquivo gcmserver.php para fazer os seus testes. Lebrando que você deve informar sua Chave de API criada no Console Google Api Ex: "AIzaSyB-yNd_TuJWh1urQo45w_9pziIMyO360n9". Criar chave de Api


Será preciso criar um arquivo chamado "dispositivos.txt" no mesmo local do gcmserver.php pois, ele irá guardar todos os Ids registrados para o envio da mensagem já que não foi utilizando um banco de dados.

5 - Depois de efetuar o registro do usuário, você pode utilizar o arquivo index.html para fazer o envio das mensagens.

Documentação: Google Cloud Messaging

Crédito especial: Eduardo Gorio

Espero que esse projeto ajude você e muitos outros :D