Cloud Functions .onCall()无法返回数据

时间:2020-04-03 20:28:01

标签: javascript node.js firebase rxjs google-cloud-functions

我通过pipe()合并了三个Observable,然后将其转换为Promise,以便可以将其返回。我已经用onRequest()测试了呼叫,并且工作正常。但是,使用onCall()时,我总是收到此错误:

Error Domain = NSCocoaErrorDomain代码= 3840“ JSON文本不是以数组或对象开头,并且没有允许设置片段的选项。 UserInfo = {NSDebugDescription = JSON文本不是以数组或对象开头,并且没有允许设置片段的选项。}

我尝试了很多事情,但是它们都返回相同的错误。我在这里做错什么了吗?

export const getNotifications = functions.region('europe-west1').https.onCall((data, context) => {

    const notificationsObs = rxjs.from(db.collection('notifications').where('receiverID', '==', 'jmwJLofoKpaQ4jligJKPc24UEe72').get());
    const requestObs = (requestsRef: any) => rxjs.from(db.getAll(...requestsRef));
    const packageObs = (packagesRef: any) => rxjs.from(db.getAll(...packagesRef));

    const notifications: Notification[] = [];
     return notificationsObs.pipe(
        mergeMap(snapshot => {
            //
            return requestObs(requestsRef);
        }),
        mergeMap((requests) => { // kthen requests
            //
            return packageObs(packagesRef)
        })
    ).toPromise().then(() => {
        return { notifications: "test" };
    }).catch(err => {err})
});

迅速

functions.httpsCallable("getNotifications").call() { (result, error) in
    if let error = error as NSError? {
        print(error)
    }

    print(result?.data) // nil
}

1 个答案:

答案 0 :(得分:0)

因此,onCall()不支持europe-west1。我删除了该区域,效果很好。