Push Notifications
These instructions describe how to setup Push Notifications
Website
<script type="module">
import { InTargetFBaseMessaging } from "https://api.intarget.app/intarget-fb-messaging.js";
// put your data here
const projectConfig = {
projectId: '',
playerId: '',
};
const accessToken = 'accessToken';
const messaging = new InTargetFBaseMessaging();
await messaging.init(projectConfig, accessToken);
await messaging.setOnMessageHandler();
</script>
Last updated