บริการการแจ้งเตือน
บริการการแจ้งเตือน AFP ช่วยให้แพลตฟอร์ม AFP โดยตรงได้รับการแจ้งเตือน จากบัญชีย่อย และ site การเปลี่ยนแปลงสถานะ แพลตฟอร์มสามารถใช้ API ของแพลตฟอร์ม เพื่อตรวจสอบการเปลี่ยนแปลง
หากต้องการรับการแจ้งเตือน ให้ใช้เซิร์ฟเวอร์ที่ยอมรับ คำขอ POST และแยกวิเคราะห์เพย์โหลด JSON ที่ระบุไว้ในสคีมา (โปรดดู ตัวอย่างการตั้งค่า) จากนั้นคุณต้องระบุ URL ปลายทาง กับผู้จัดการพาร์ทเนอร์เชิงกลยุทธ์เพื่อเปิดใช้บริการ
สคีมา
เพย์โหลดการแจ้งเตือนต้องเป็นไปตามสคีมาต่อไปนี้
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Notification",
"type": "object",
"properties": {
"accountName": {
"type": "string",
"description": "The name of the modified sub-account."
},
"domain": {
"type": "string",
"description": "The domain the notification refers to, if any. Optional (only populated for SITE_APPROVAL)"
},
"notificationType": {
"type": "string",
"enum": ["PUBLISHER_APPROVAL", "SITE_APPROVAL"],
"description": "Type of notification"
}
},
"required": ["platformPublisherId", "publisherId", "notificationType"],
"additionalProperties": false
}
คุณเพิ่ม notificationTypes
และช่องอื่นๆ ในภายหลังได้
ตัวอย่าง
การแจ้งเตือนการอนุมัติผู้เผยแพร่โฆษณามีลักษณะดังนี้
{
"accountName" : "platforms/pub-1234567890123456/accounts/pub-0987654321654321",
"notificationType": "PUBLISHER_APPROVAL"
}
การแจ้งเตือนการอนุมัติเว็บไซต์จะมีลักษณะดังนี้
{
"accountName" : "platforms/pub-1234567890123456/accounts/pub-0987654321654321",
"domain": "afpsite.com",
"notificationType": "SITE_APPROVAL"
}
ตัวอย่างการตั้งค่า
ตัวอย่างของเซิร์ฟเวอร์ NodeJS ที่บันทึกเนื้อหาของ การแจ้งเตือน:
// Import express
const express = require('express');
// Create an express application
const app = express();
// Middleware to parse JSON bodies
app.use(express.json());
// Define a route to receive POST requests
app.post('/notification', (req, res) => {
console.log('Received account name:', req.body.accountName)
console.log('Received Domain:', req.body.domain)
console.log('Received notification type', req.body.notificationType)
// Send a response back to the client
res.status(200).send('Notification received');
});
// Start the server
const PORT = process.env.PORT || 8080;
app.listen(PORT, () => {
console.log(`Server running on port ${PORT}`);
});
ตัวอย่าง URL ปลายทาง: https://yourdomain.com/your-endpoint
ตรวจสอบว่าปลายทางใช้งานได้โดยส่งคำขอ POST โดยใช้ curl
:
curl -X POST https://yourdomain.com/your-endpoint \
-H "Content-Type: application/json" \
-d '{"accountName": "platforms/pub-1234567890123456/accounts/pub-0987654321654321", \
"notificationType": "PUBLISHER_APPROVAL"}'
กำหนดค่า robots.txt
ตรวจสอบว่าบริการการแจ้งเตือนได้รับอนุญาตให้เข้าถึงปลายทางของคุณ
บริการแจ้งเตือนจะปฏิบัติตามคำสั่งที่ระบุไว้ใน
robots.txt
ของรากของ
โดเมนของคุณ หากมี:
User-agent: GoogleOther
Disallow: <ensure your endpoint is not disallowed>