- [SQLSERVER] Loại bỏ Restricted User trên database MSSQL
- [C#] Hướng dẫn tạo mã QRcode Style trên winform
- [C#] Hướng dẫn sử dụng temp mail service api trên winform
- [C#] Hướng dẫn tạo mã thanh toán VietQR Pay không sử dụng API trên winform
- [C#] Hướng Dẫn Tạo Windows Service Đơn Giản Bằng Topshelf
- [C#] Chia sẻ source code đọc dữ liệu từ Google Sheet trên winform
- [C#] Chia sẻ source code tạo mã QR MOMO đa năng Winform
- [C#] Chia sẻ source code phần mềm lên lịch tự động chạy ứng dụng Scheduler Task Winform
- [Phần mềm] Tải và cài đặt phần mềm Sublime Text 4180 full version
- [C#] Hướng dẫn download file từ Minio Server Winform
- [C#] Hướng dẫn đăng nhập zalo login sử dụng API v4 trên winform
- [SOFTWARE] Phần mềm gởi tin nhắn Zalo Marketing Pro giá rẻ mềm nhất thị trường
- [C#] Việt hóa Text Button trên MessageBox Dialog Winform
- [DEVEXPRESS] Chia sẻ code các tạo report in nhiều hóa đơn trên XtraReport C#
- [POWER AUTOMATE] Hướng dẫn gởi tin nhắn zalo từ file Excel - No code
- [C#] Chia sẻ code lock và unlock user trong domain Window
- [DEVEXPRESS] Vẽ Biểu Đồ Stock Chứng Khoán - Công Cụ Thiết Yếu Cho Nhà Đầu Tư trên Winform
- [C#] Hướng dẫn bảo mật ứng dụng 2FA (Multi-factor Authentication) trên Winform
- [C#] Hướng dẫn convert HTML code sang PDF File trên NetCore 7 Winform
- [C#] Hướng dẫn viết ứng dụng chat với Gemini AI Google Winform
[C#] Hướng dẫn push notification sử dụng Firebase Cloud Message
Xin chào các bạn, bài viết hôm nay, mình sẽ hướng dẫn các bạn cách gởi notification FireBase Cloud Message sử dụng C# và gởi http request post đến PHP.
Để chạy được ứng dụng này, các bạn cần phải tạo FireBase trên Android.
Còn trong bài này, mình chỉ hướng dẫn gởi Request từ app Winform C# lên thôi.
Dưới đây là giao diện demo ứng dụng:
Cấu hình source code PHP, để tạo lệnh gởi nội dung lên firebase
public function sendNotification() {
$to = $_POST["to"];
$title = $_POST["title"];
$body = $_POST["body"];
$tag = $_POST["tag"];
// $to = "";
// $title = "Thông báo!";
// $body = "This is a message";
// $tag = "nghiphep";
$url = 'https://fcm.googleapis.com/fcm/send';
$fields = array (
'to' => "/topics/MyTopic",
"priority" => "high",
'data' => array (
"body" => $body,
"title" => $title,
"sound" => "default",
"tag" => $tag,
"to" => $to
)
);
$fields = json_encode ( $fields );
$headers = array (
'Authorization: key=' . "AAAAD91fqNY:APA91bGTm5WkABxptKYy-5fWmfMTkZx19IQHVLwDCOv2IEIQkFGdSOJ4EUkTyiKDlq-MA4CR2Fnh5X_dYp4ypNAdvq0KJINr9JRMvneY9U7hsjemokJf72pNXfyJqif4ALXAJJCr5dJD",
'Content-Type: application/json'
);
$ch = curl_init ();
curl_setopt ( $ch, CURLOPT_URL, $url );
curl_setopt ( $ch, CURLOPT_POST, true );
curl_setopt ( $ch, CURLOPT_HTTPHEADER, $headers );
curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt ( $ch, CURLOPT_POSTFIELDS, $fields );
$result = curl_exec ( $ch );
echo $result;
curl_close ( $ch );
}
Và dưới đây là source code C#, trong bài viết này mình sử dụng thư viện Microsoft.Net.Http để gởi http request post async lên file php mình vừa tạo ở bên trên:
Cài đặt Nuget: PM> Install-Package Microsoft.Net.Http -Version 2.2.29
Source code C# send http request:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace jsonHttpRequest
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private async void button1_Click(object sender, EventArgs e)
{
string result = await SendNotification("", txt_title.Text, txt_body.Text, "");
//MessageBox.Show(result);
}
public async Task SendNotification(string to, string title, string body, string tag)
{
HttpClient client = new HttpClient();
try
{
var values = new Dictionary<string, string>
{
{ "to", to },
{ "title", title },
{ "body", body },
{ "tag", tag }
};
var content = new FormUrlEncodedContent(values);
var response = await client.PostAsync("http://192.168.0.3:8081/HOBWEB/android_api/sendNotification", content);
return await response.Content.ReadAsStringAsync();
}
catch (Exception ex)
{
return ex.Message.ToString();
}
}
}
}
HAPPY CODING