Gerçek Zamanlı Bağlantı (Socket.IO)
Bağlantı
const socket = io("https://api.pxserv.net", {
auth: {
apiKey: "proje_api_anahtariniz",
},
});
socket.on("connect", () => {
console.log("PxServ'e bağlandı.");
});Olaylar
setData — Veri Güncellendi
setData — Veri Güncellendisocket.on("setData", (data) => {
console.log("Veri güncellendi:", data);
});removeData — Veri Silindi
removeData — Veri SilindiBağlantıyı Sonlandırma
Diğer Diller
Dil
Socket.IO İstemcisi
Last updated