Benachrichtigungsdienst
Mit dem AFP-Benachrichtigungsdienst können AFP Direct-Plattformen Benachrichtigungen erhalten. für Unterkonto und Website Statusänderungen. Plattformen können die Platform API, um Änderungen zu untersuchen.
Um Benachrichtigungen zu erhalten, müssen Sie einen Server implementieren, der POST-Anfragen und parst die im Schema beschriebene JSON-Nutzlast (siehe Beispielkonfiguration). Anschließend müssen Sie die Endpunkt-URL angeben. Strategic Partner Manager kontaktieren, um den Service zu aktivieren.
Schema
Die Benachrichtigungsnutzlast muss dem folgenden Schema entsprechen:
{
"$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
}
Weitere notificationTypes
- und andere Felder können später hinzugefügt werden.
Beispiele
Eine Benachrichtigung über die Genehmigung eines Publishers sieht so aus:
{
"accountName" : "platforms/pub-1234567890123456/accounts/pub-0987654321654321",
"notificationType": "PUBLISHER_APPROVAL"
}
Eine Benachrichtigung zur Genehmigung einer Website sieht in etwa so aus:
{
"accountName" : "platforms/pub-1234567890123456/accounts/pub-0987654321654321",
"domain": "afpsite.com",
"notificationType": "SITE_APPROVAL"
}
Beispiel für eine Einrichtung
Im Folgenden finden Sie ein Beispiel für einen NodeJS-Server, der den Inhalt eines Benachrichtigung:
// 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}`);
});
Beispiel für eine Endpunkt-URL: https://yourdomain.com/your-endpoint
Prüfen Sie, ob der Endpunkt funktioniert, indem Sie eine POST-Anfrage mit curl
senden:
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 konfigurieren
Achten Sie darauf, dass der Benachrichtigungsdienst Zugriff auf Ihren Endpunkt hat. Die
berücksichtigt die im
robots.txt
-Datei des Stammverzeichnisses von
Ihre Domain, falls vorhanden:
User-agent: GoogleOther
Disallow: <ensure your endpoint is not disallowed>