fetch('https://your-firebase-function-url') .then(response => response.json()) .then(data => { // 在这里处理获取到的数据 console.log(data); }) .catch(error => { // 处理错误情况 console.error(error); }); 在这个示例中,我们使用fetch方法发送GET请求到Firebase函数的URL,并将响...
It has attempted to get a new AppCheck token, and AppCheck was not able to provide one (hence the error is coming from @firebase/app-check). So any Firestore operation after that will fail if AppCheck enforcement is ON. Interestingly, there was an issue with AppCheck and Flutter that saw...