Last active
November 12, 2015 00:28
-
-
Save Felipe00/9ca5727685aa49d9714c to your computer and use it in GitHub Desktop.
Classe pra enviar uma mensagem por meio do Gcm do google. Tá quebrado :T
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package util; | |
import ch.qos.logback.core.net.SyslogOutputStream; | |
import org.apache.commons.io.IOUtils; | |
import org.apache.http.client.HttpClient; | |
import org.apache.http.client.methods.HttpPost; | |
import org.apache.http.entity.StringEntity; | |
import org.apache.http.impl.client.DefaultHttpClient; | |
import org.json.simple.JSONObject; | |
import play.Logger; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.OutputStream; | |
import java.net.HttpURLConnection; | |
import java.net.URL; | |
import java.util.List; | |
/** | |
* Created by lacroiix on 10/11/15. | |
*/ | |
public class GcmSender { | |
public static void send(List<String> to, String data) { | |
final String API_KEY = "AIzaSyA4RfBF9h4O7-oV9cmp5qPiveH99p2BV4I"; | |
try { | |
String REQUEST_URL = "https://android.googleapis.com/gcm/send"; | |
HttpClient httpclient = new DefaultHttpClient(); | |
HttpPost httpPost = new HttpPost(REQUEST_URL); | |
httpPost.setHeader("Authorization", "key=" + API_KEY); | |
httpPost.setHeader("Content-Type", "application/json"); | |
String message = "Teste"; | |
StringEntity params = new StringEntity( | |
"{ \"data\": {\"message\": \"" + message + "\"}" | |
+ "\"registration_ids\": [\"" + to.get(0) + "\"]}"); | |
httpPost.setEntity(params); | |
Logger.info("create friends event response :" | |
+ httpclient.execute(httpPost).getStatusLine() | |
.getStatusCode()); | |
System.out.println("---"); | |
} catch (Exception e) { | |
Logger.error(e.toString()); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment