错误:调用Firebase https可调用云函数时,内部位于新的HttpsErrorImpl



这是我每次调用manageSubscription((时都会遇到的错误,它调用https可调用的云函数:

core.js:4081 ERROR Error: internal
at new HttpsErrorImpl (index.cjs.js:60)
at _errorForResponse (index.cjs.js:155)
at Service.<anonymous> (index.cjs.js:560)
at step (tslib.es6.js:100)
at Object.next (tslib.es6.js:81)
at fulfilled (tslib.es6.js:71)
at ZoneDelegate.invoke (zone-evergreen.js:364)
at Object.onInvoke (core.js:27149)
at ZoneDelegate.invoke (zone-evergreen.js:363)
at Zone.run (zone-evergreen.js:123)

使用:

"@angular/core": "^10.0.4",
"@angular/fire": "^6.0.3",

这是我的应用程序模块:

@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
BrowserAnimationsModule,
AngularFireModule.initializeApp(environment.firebaseConfig),
AngularFireFunctionsModule,
SharedComponentsModule,
AppRoutingModule
],
providers: [
{ provide: ORIGIN, useValue: 'http://localhost:5001' }
],
bootstrap: [AppComponent]
})

我正在调用我的服务中的https可调用云功能:

增加了依赖项:

constructor(private firebaseFunctions: AngularFireFunctions) {}

这是一种方法:

public manageSubscription(){
this.firebaseFunctions.useFunctionsEmulator('http://localhost:5001');
const functionRef = this.firebaseFunctions.httpsCallable('testFunction');
functionRef({ returnUrl: 'window.location.origin' })
.subscribe(response => {
console.log(response);
});
}

这是云功能:

import * as functions from 'firebase-functions';
import * as admin from 'firebase-admin';
admin.initializeApp();
exports.testFunction = functions.https.onCall((data, context) => {
console.log('reached');
return { date: true };
});

我在云函数日志或chrome dev控制台的"网络"选项卡中看不到对此函数的调用。我做错了什么?

我尝试了云功能模拟器和实时应用程序。仍然没有运气!

在过去的3天里,我一直在尝试调试它,头发和体重都减轻了一点:/

你不是唯一一个因为这个问题而脱发的人。我通过简单地更新客户端中的firebase包来解决问题(我在周五做了同样的事情,但还没有解决(7.22.0版本是魔鬼编写的,将其升级到7.22.1,希望你会没事的。

相关内容

  • 没有找到相关文章

最新更新