第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Firebase 函數(shù),響應(yīng)不是有效的 json 對象

Firebase 函數(shù),響應(yīng)不是有效的 json 對象

心有法竹 2023-04-20 10:50:53
我正在使用 android studio 開發(fā)一個基于角色的應(yīng)用程序,因為我的項目需要管理員權(quán)限來創(chuàng)建用戶和刪除用戶我為我的項目使用了 firebase admin sdk。我試圖刪除多個帳戶,但我遇到了問題。響應(yīng)返回?zé)o效的 json 對象。正如在我的代碼中,我試圖處理可能的錯誤。但是,響應(yīng)仍然返回?zé)o效的 json 對象。 見下文索引.js    exports.deleteUser = functions.https.onCall(async (data,context) => {try {    if(!context.auth) {        throw new AuthenticationError('Kimlik Do?rulamas? Yap?lmam??');    }    const uids = JSON.parse(data);    console.log(uids);    const callerUid = context.auth.uid;    const callerUser = await admin.auth().getUser(callerUid);    if(!callerUser.customClaims.admin && !callerUser.customClaims.superadmin) {        throw new NotAnAdminError('Bu i?lemi sadece y?neticiler ger?ekle?tirebilir');    }     const reference = admin.firestore().collection("Users");    const res = await admin.auth().deleteUsers(uids);    res.errors.forEach(element => console.log(element));    const successes = res.successCount;    const fails = res.failureCount;    console.log(fails);    console.log(successes);    if(fails===0) {        await uids.forEach(element => reference.doc(element).delete());        return {result:successes+' ??renci Silindi!'};    }else {        throw new functions.https.HttpsError('Silme Hatas?','Bilinmeyen hata,         silinemeyen ??renci say?s?: '+fails);    }}    catch(error) {        if(error.type === 'NotAnAdminError') {            throw new functions.https.HttpsError('Bu i?lemi yapma yetkiniz              yok.',error.message);        }else if(error.type === 'AuthenticationError') {            throw new functions.https.HttpsError('Kimlik Hatas?',error.message);        }else {            throw new functions.https.HttpsError('internal ERROR from catch             block',error.message);        }     }});
查看完整描述

1 回答

?
侃侃無極

TA貢獻2051條經(jīng)驗 獲得超10個贊

您的函數(shù)聲明并導(dǎo)出為“deleteUser”,但您在 Android 客戶端中將其調(diào)用為“deleteUsers”,這是不一樣的。字符串需要匹配。



查看完整回答
反對 回復(fù) 2023-04-20
  • 1 回答
  • 0 關(guān)注
  • 107 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號