I have setup my https server to receive App Store Server Notification. But I can not receive the test notification. The following is what I did and checked:
- Running my https server (It's a simple https server build with python) on port 11234. The server url is https://recorderplus.com:11234
- Setup the sandbox server url in App Store Connect: https://recorderplus.com:11234
- Use App Store Server Library(python) to request a test notification, And get a response: SendTestNotificationResponse(testNotificationToken='f6ea15ca-0f4f-4233-8ae6-6ecc8a7ab43c_1719371691827')
- But my https server did not receive the test notification.
- To make sure my https server works fine. In browser(firefox) I input "https://recorderplus.com:11234", the browser can get the result page from https server.
- My https server also support Post command, I run the command "curl -X POST -d "test" https://recorderplus.com:11234", my https server can get the post and print it.
Did I miss anything? Is there anything I should do or check to make my server receive the test notification?