Guest User

Untitled

a guest
Dec 18th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. POST https://fcm.googleapis.com/v1/projects/<my_project_id>/messages:send
  2. Authorization: Bearer <oauth token from GoogleCredential.getAccessToken()>
  3. Content-Type: application/json; UTF-8
  4. {
  5. "message": {
  6. "notification": {
  7. "title": "Sample title",
  8. "body": "Sample body 15:33:31"
  9. },
  10. "android": {
  11. "ttl": "172800s"
  12. },
  13. "topic": "MyTopic"
  14. }
  15. }
Add Comment
Please, Sign In to add comment