Im trying to implement the back-end server part to receive in-app purchase notifications from the Apple App Store, but I'm not sure how to do it. My server is written with ASP.NET and my method signature looks like this (as a test):
[Route("api/AppStore/Apple")]
public IHttpActionResult Apple(string data)
{
System.IO.File.WriteAllText("c:\\test\\apple.txt", data);
// var appleRealTimeDeveloperNotification = JsonConvert.DeserializeObject<AppleRealTimeDeveloperNotification>(data);
return Ok();
}
And I wired up my endpoint in the Apple App store for my app to point to this, but nothing seems to come through. My server is running TLS 1.2 and https...
Any help would be appreciated!
Post
Replies
Boosts
Views
Activity
Yeah I also need it. Now I have to call a different API to get what the timezone offset for a given lat/long and augment it myself...pain in the ****