שירות התראות
שירות ההתראות של AFP מאפשר לפלטפורמות AFP Transparent לקבל התראות על אישורים של PlatformChildSite – סימן שהאתר זמין עכשיו ב-API.
כדי לקבל התראות, צריך להטמיע שרת שמקבל בקשות POST ומנתח את עומס העבודה של ה-JSON שמתואר בסכימה (ראו הגדרה לדוגמה). לאחר מכן, צריך לספק את כתובת ה-URL של נקודת הקצה למנהל של שותף האסטרטגי כדי להפעיל את השירות.
סכימה
המטען הייעודי של ההתראה חייב לעמוד בהסכימה הבאה:
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Notification",
"type": "object",
"properties": {
"platformPublisherId": {
"type": "string",
"description": "The unique identifier for the platform publisher."
},
"publisherId": {
"type": "string",
"description": "The unique identifier for the publisher."
},
"platformChildSiteName": {
"type": "string",
"description": "The name of the PlatformChildSite the notification refers to (populated for SITE_APPROVAL)."
},
"notificationType": {
"type": "string",
"enum": ["SITE_APPROVAL"],
"description": "Type of notification"
},
},
"required": ["platformPublisherId", "publisherId", "notificationType"],
"additionalProperties": false
}
אפשר להוסיף עוד שדות notificationTypes
ושדות אחרים מאוחר יותר.
דוגמאות
התראה מסוג SITE_APPROVAL
תיראה כך:
{
"platformPublisherId" : "pub-123",
"publisherId" : "pub-456",
"platformChildSiteName" : "accounts/pub-123/platforms/my-platform/childAccounts/pub-456/sites/child-domain.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 platformPublisherId:', req.body.platformPublisherId)
console.log('Received publisherId:', req.body.publisherId)
console.log('Received platformChildSiteName:', req.body.platformChildSiteName)
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 '{"platformPublisherId" : "pub-123", \
"publisherId" : "pub-456", \
"platformChildSiteName" : "accounts/pub-123/platforms/my-platform/childAccounts/pub-456/sites/child-domain.com", \
"notificationType": "SITE_APPROVAL"}'
הגדרת קובץ robots.txt
מוודאים שלשירות ההתראות יש הרשאת גישה לנקודת הקצה. שירות ההתראות פועל בהתאם להנחיות שמפורטות בקובץ robots.txt
ברמה הבסיסית (root) של הדומיין, אם קיים כזה:
User-agent: GoogleOther
Disallow: <ensure your endpoint is not disallowed>