I'm trying to create a post route that will accept notifications from tiktok's webhooks as they are described here; https://developers.tiktok.com/doc/webhooks-overview/
As mentioned here I wrote up a post route;
@Post('tiktok/notifications')
async TiktokNotificationsPost(@Req() req, @Res() res): Promise<void>
{
const vv = req;
res.sendStatus(200);
}
I also added a full callback url to the app page and have confirmed that this route is reachable over postman. However, even though I'm doing all the stuff that would post a notification such as posting a video that I've sent with the video kit I'm not getting any notifications.
I've tried
Has anyone else worked with this? I'd appreciate any input as I'm drawing a blank on how to proceed with implementing this.