Advertisement
Guest User

Untitled

a guest
May 3rd, 2021
692
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. $response = Http::withHeaders([
  2. 'Accept' => 'application/json',
  3. 'Accept-encoding' => 'gzip, deflate',
  4. 'Content-Type' => 'application/json',
  5. ])->post('https://exp.host/--/api/v2/push/send', [
  6. json_encode([
  7. 'to' => $user->notification_token,
  8. 'sound' => 'default',
  9. 'title' => $title,
  10. 'body' => $message,
  11. 'data' => json_encode(['status' => $status]),
  12. ]),
  13. ]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement