Post

Replies

Boosts

Views

Activity

Reply to App Store Server Notifications Pass-Through Custom Variables
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!
Apr ’22