Местоположение
Россия, Москва и Московская обл., Ивантеевка (Московская обл.)

Наибольший вклад в теги

Все теги (3)

Лучшие ответы пользователя

Все ответы (2)
  • Как отправлять Firebase Cloud Messaging когда backend на php?

    @dsdfsdf
    Пример:
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, htmlspecialchars_decode('https://fcm.googleapis.com/fcm/send'));
    curl_setopt($ch, CURLOPT_POST, true);
    $headers = [
    	'Authorization: key=' . API_ACCESS_KEY,
    	'Content-Type: application/json'
    ];
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 2);
    
    $fields = [
    	'to' => 'userAgentToken',
    	'notification' => [
    	'body' => 'Some body text',
    	'title' => 'Some title text'
    ]];
    
    curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
    curl_exec($ch);
    
    curl_close($ch);
    Ответ написан
    Комментировать