Any update on it?
I wrote quite similar endpoint using C#
`
[HttpPost]
[Route("apple-notification")]
public async Task ProcessAppleNotification()
{
using var streamReader = new StreamReader(Request.Body);
var content = await streamReader.ReadToEndAsync();
_logger.LogDebug($"Got request from Apple: {content}");
return Json(new {
requestBody = content
});
}`
And telemetry is showing me that there is no requests from AppStore has been even received