【发布时间】:2017-08-10 09:51:52
【问题描述】:
我正在尝试将 Firebase 函数用作我们的服务器。这是我正在使用的功能。当我通过 HTTP 触发它时它工作正常
exports.subscriptions = functions.https.onRequest((request, response) => {
// Send 200 code to the server indicate to that you are done!
response.send(200);
});
苹果说:
App Store 将通过 HTTP POST 将 JSON 对象传送到您的 密钥订阅服务器
但到目前为止,我没有收到来自 Apple 服务器的任何通知。
有什么好的建议吗?
我检查了控制台中的日志,似乎我已经开始接收来自苹果服务器的通知了。
【问题讨论】:
标签: firebase app-store-connect google-cloud-functions storekit