firebase auth => auth/captcha-check-failed 和“找不到主机名匹配”错误
尝试使用 auth.linkWithPhoneNumber() 时收到以下消息。同一域上的所有其他身份验证服务都工作正常。 auth/captcha-check-failed 和“主机名不匹配
如何获取 Firebase 存储项目的完整路径? (包括 gs://)
我的问题 我想要完整的网址,例如: gs://my-app-name.appspot.com/companies/666d236f-a075-492d-8110-a3f4bd6d7f18/logo 我的解决方案 我正在使用上传的响应来构建 url ...
如何在expo react-native-app中收到FCM通知时禁用声音
我正在使用 firebase admin 从 dotnet 服务器发送通知来反应本机应用程序。在任何情况下一切都工作正常(前景、背景、死亡),但我希望用户能够
我正在尝试更改我的 applicationId 和命名空间的名称,以便我可以将我的应用程序放在 Google Play 上。 我已经在 Firebase 中对必要的文件做了很多工作,但我刚刚注意到一个错误......
BadRequestKeyError:400 错误请求:浏览器(或代理)发送了该服务器无法理解的请求。关键错误:“搜索”标题
App.html 标题 应用程序.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <form action="." method="post"> Search: <input type="text" name="search"> <input type="submit" value="Show"> </form> </body> </html> main.py from flask import Flask, render_template, request app = Flask(__name__) @app.route('/') def index(): return render_template('index.html') @app.route('/CmpPr') def cmpP(): return render_template('CmpPr.html') @app.route('/CmpSpes') def cmpS(): return render_template('CmpSpes.html') @app.route('/App', methods=['POST', 'GET']) def App(): search = request.form['search'] return render_template('output.html', n=search) @app.route('/Gro') def Gro(): return render_template('Gro.html') if __name__ == '__main__': app.run(debug=True) 我创建了多个 html 页面 我想打印消息,从 TextBox 请求(上面的代码)并打印到另一个 html 页面 我尝试使用 request.form.get('search') 但它返回 null 如果我使用 request.form.get('search', FALSE 或 TRUE) 它会返回 FALSE 或 TRUE 我还使用了 if else 循环来指定 GET 和 POST 方法,但仍然显示相同的错误 任何人都可以帮我解决这个问题吗 谢谢你 首先,您的表单操作应该指向处理表单数据的视图(即/App): <form action="/App" method="post"> 其次,您应该只在请求方法为POST时获取表单数据,因为您已经在模板中设置了method="post"。另外,当请求方法为 GET 时,您需要渲染包含表单的 App.html: @app.route('/App', methods=['POST', 'GET']) def App(): if request.method == 'POST': # get form data when method is POST search = request.form['search'] return render_template('output.html', n=search) return render_template('App.html') # when the method is GET, it will render App.html 附注您收到的错误已清楚地解释为表单数据中没有名为 search 的键。 你可以试试这个,对我有用 @app.route('/predict_home_price', methods=['POST']) def predict_home_price(): try: data = request.get_json() # Expecting JSON data # Check if required data is provided if not data: return jsonify({'error': 'No JSON data received'}), 400
正确使用 firebase 和 @firebase npm 包
当我向 firebase >9.0.0 包添加依赖项时,npm install 会同时下载 node_modules\ firebase 和 node_modules\ @firebase (没有提及)。 我知道@firebase 是...
反应本机项目中的 AndroidMennifest.xml 中未显示包名称
此 XML 文件似乎没有任何与之关联的样式信息。文档树如下所示。 此 XML 文件似乎没有任何与之关联的样式信息。文档树如下所示。 我到处都找到了,但找不到解决方案。请帮助我,因为这个问题我无法将我的应用程序连接到 firebase 你可以在 android > app > build.gradle 中找到它
Laravel POST 方法返回状态:405 不允许在 POST 方法上使用方法
请查找以下信息: NoteController.php 请查找以下信息: NoteController.php <?php namespace App\Http\Controllers; use App\Http\Requests\NoteRequest; use App\Models\Note; use Illuminate\Http\JsonResponse; class NoteController extends Controller { public function index():JsonResponse { $notes = Note::all(); return response()->json($notes, 200); } public function store(NoteRequest $request):JsonResponse { $note = Note::create( $request->all() ); return response()->json([ 'success' => true, 'data' => $note ], 201); } public function show($id):JsonResponse { $note = Note::find($id); return response()->json($note, 200); } public function update(NoteRequest $request, $id):JsonResponse { $note = Note::find($id); $note->update($request->all()); return response()->json([ 'success' => true, 'data' => $note, ], 200); } public function destroy($id):JsonResponse { Note::find($id)->delete(); return response()->json([ 'success' => true ], 200); } } NoteRequest.php <?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class NoteRequest extends FormRequest { public function authorize() { return true; } public function rules() { return [ 'title', 'required|max:255|min:3', 'content', 'nullable|max:255|min:10', ]; } } Note.php(模型) <?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Note extends Model { use HasFactory; protected $guarded = []; } api.php <?php use App\Http\Controllers\NoteController; use Illuminate\Support\Facades\Route; Route::prefix('v1')->group(function () { Route::resource('/note', NoteController::class); }); php artisan 路线:列表 GET|HEAD / ...................................................................................................................... POST _ignition/execute-solution ............... ignition.executeSolution › Spatie\LaravelIgnition › ExecuteSolutionController GET|HEAD _ignition/health-check ........................... ignition.healthCheck › Spatie\LaravelIgnition › HealthCheckController POST _ignition/update-config ........................ ignition.updateConfig › Spatie\LaravelIgnition › UpdateConfigController GET|HEAD api/v1/note .......................................................................... note.index › NoteController@index POST api/v1/note .......................................................................... note.store › NoteController@store GET|HEAD api/v1/note/create ................................................................. note.create › NoteController@create GET|HEAD api/v1/note/{note} ..................................................................... note.show › NoteController@show PUT|PATCH api/v1/note/{note} ................................................................. note.update › NoteController@update DELETE api/v1/note/{note} ............................................................... note.destroy › NoteController@destroy GET|HEAD api/v1/note/{note}/edit ................................................................ note.edit › NoteController@edit GET|HEAD sanctum/csrf-cookie .................................. sanctum.csrf-cookie › Laravel\Sanctum › CsrfCookieController@show 迅雷请求(同邮递员) JSON 请求 { "title": "Hello World", "content": "Lorem ipsum." } 尝试发出 JSON POST 请求并获取状态:405 方法不允许并且我正在使用 php artisan 服务,如果需要,我可以提供 GIT 项目。请告诉我。 您的验证规则看起来不正确。在您的 NoteRequest 类中,规则应该是一个关联数组,其中键是字段名称,值是验证规则。但是,在您的代码中,规则被定义为以逗号分隔的字符串列表。这可能会导致验证失败并返回 405 Method Not allowed 错误。 public function rules() { return [ 'title' => 'required|max:255|min:3', 'content' => 'nullable|max:255|min:10', ]; }
我想做的是 我想在输入错误密码时将标签更改为错误密码 但出现错误 ReferenceError:文档未定义 这是我的 HTML 文件 我想做的是 我想在输入错误密码时将 标签更改为错误密码 但出现错误 ReferenceError:文档未定义 这是我的 HTML 文件 <form action="/check" method="POST"> <label for="password">Password:</label> <input type="text" id="password" name="password" required> <input type="submit" value="Submit"> <p></p> </form> 这是我的 javascript 文件内容 import express from "express"; import {dirname} from "path"; import { fileURLToPath } from "url"; import bodyParser from "body-parser"; const __dirname = dirname(fileURLToPath(import.meta.url)); const app = express(); const port = 3000; const pass = "ILoveProgramming"; var enter = ""; app.use(bodyParser.urlencoded({extended:true})); function checker(req, res, next){ enter = req.body.password; console.log(enter); next(); } app.use(checker); app.get("/", (req,res) =>{ res.sendFile(__dirname +"/public/index.html"); }); app.post("/check",(req,res)=>{ if(pass === enter){ res.sendFile(__dirname+"/public/secret.html"); } else{ document.querySelector("p").textContent("The paswrd is wrong"); console.log("The password is incorrect"); } // console.log(enter); }); app.use(bodyParser); app.listen(port, () =>{ console.log(`server is live at ${port}`); }); 我对这一切都是新手所以把我当作一个没有任何经验的人 document对象是浏览器DOM API的一部分,它在服务器端不可用。在浏览器控制台上,它是 window 对象的属性。 window.document。 您正在尝试操作服务器上的 DOM,这是不可能的。您应该在浏览器接收并呈现 HTML 页面后在客户端处理 DOM 操作。为此,您应该在 HTML 文件内有一个 script 标签。 <script> // inside here you add your logic to access document <script/> script标签将在浏览器上执行,您可以访问此标签内的document对象
问题已经解决了。
Firebase Cloud Functions 无法读取硝基生成的 index.mjs 文件
编辑: 我想将 Nuxt3 应用部署到 Firebase 托管。我已将 Nitro 的部署预设设置为“firebase”NITRO_PRESET=firebase,并且构建步骤运行良好。然而,当我运行 fi...
我有多个共享公共列的数据框。 dfs <- list(DB07, DB08, DB09, DB10, DB11, DB12, DB13, DB14, DB15, DB16, DB17, DB18, DB19, DB20, DB21) I would like to check if any combinat...
我正在尝试让 JWT 通过 Firebase 管理员作为测试套件的用户在 Firebase 模拟器中进行身份验证。模拟器正在运行 firebase 所称的 << demo >> 项目,因此它...
在 SQL Developer 上运行创建表学生时出错:CREATE TABLE Students
创建表学生( 年号(4) NOT NULL, 学期 VARCHAR2(1) NOT NULL CONSTRAINT Stu_sem_ck CHECK (学期 IN ('1', '2', '3')), 部门 VARCHAR2(3) NOT NULL, 课程编号...
我没有更改代码中的任何内容,但突然间,当我尝试使用 firebase 的身份验证创建用户时,它说属性“firebase”不存在。
我正在向 CRAN 提交 R 包,但在运行 devtools::check(remote = TRUE, manual = TRUE) 时遇到以下注意事项: 检查手册的 HTML 版本...注意 ...
运行 clangd --check=my_file.cu 我得到了以下内容(简化): I[13:05:09.356] 测试源文件 /path/to/my_file.cu 我[13:05:09.362]正在加载编译数据库... 我[13:05:...
我使用的是 Firebase 实时数据库(不是 Firestore),并且 Firebase 规则存在问题。 我使用 Bolt 来生成规则: 路径/项目{ 读取(){假} write() { 假...
如何使用 Nuxt 中间件正确检查 Firebase Auth?
我有一个与 Firebase 连接的 Nuxt 应用程序。我有一个可组合的 useAuth() ,代码如下: 从 'firebase/auth' 导入 { type User, onAuthChangedListener }; 导出默认函数 () { c...
Firebase Cloud Storage 下载网址与路径
我是 Firebase 存储新手,想知道最佳实践是什么。 我想将图像上传到 firebase 云存储,并返回一个下载 url,然后将其存储到 firestore。难道...
Firebase Crashlytics 控制台中上传的 dSYM 文件的 UUID 不匹配
我在 Flutter 应用程序中遇到 Firebase Crashlytics 问题,其中 dSYM 文件已成功上传,但 UUID 在 Firebase 控制台上不匹配。 如附图所示...
Firebase 消息 sendToDevice() 新 API?
用于 Firebase 消息传递的“旧/版本 8”JavaScript API 具有向移动设备发送通知的功能: admin.messaging().sendToDevice(...) “新/模块化/
我使用以下方法在 firebase 中上传数据: HashMap m = new HashMap(); if(approved.isChecked()){ m.put("
Flutter Firebase 设置和缺少 google_app_id。 Firebase 分析已禁用
我使用命令 flutter create test9_firebase_setup -a kotlin --platforms android 创建了一个新的 Flutter 应用程序。目标是连接到 firebase,并进行身份验证、分析和崩溃处理。 在我的
我一直在尝试学习在我的项目中使用 firebase 数据库。但是,我无法让它工作,因为从我的 firebase 读取数据时似乎出现错误。我只看视频
使用 verifyPasswordResetCode 在 firebase 上验证电子邮件
我目前正在设置一些 firebase-auth。 对于电子邮件过程的恢复密码和验证,Firebase 使用一些默认页面,用户在获取之前通过电子邮件重定向到...
找不到参数的方法compile() [project ':react-native-version-check']
我已经实现了react-native的VersionCheck,从文档本身完成了设置,但在运行应用程序时出现错误。 错误无法找到参数的方法compile() [项目...
使用 Null-check 测试方法运行程序时,JUnit5 ExpectedValue 测试方法失败
我有两个单元测试用例方法:TestUserEventExpectedResult()、TestUserEventNullCheck()。我的问题是,当我仅使用 TestUserEventExpectedResult() 方法运行程序时,我可以获得预期的结果
我使用 firebase 电话身份验证创建了一个号码发送活动和确认/otp 片段。当定向到确认页面时,来自 Firebase 的 6 位数短信代码将发送至输入的电话号码...
如何在模拟器套件中运行firebase阻塞功能(beforeUserCreated)?
在网上搜索了多个小时并询问ChatGPT后,我没有找到解决方案。 我有一个 Firebase 项目(Web 应用程序),并且正在使用 Gen2 Javascript Node 来实现 Firebase 函数。我...
Firebase 功能部署上的 Google Cloud Secret 权限被拒绝
我有一个带有谷歌云功能的Firebase项目,如下所示: 导出 const myFun =functions.region("europe-west1") .runWith({ timeoutSeconds: 10, 秘密: ['MY_SECRET'] }) .h...
Firebase StreamSubscription 未在 flutter 代码中获取数据
我有 2 个 StreamSubscription,我想用它们从 Firebase 文档获取数据。 第一个是_trxnStream,第二个是_clientStream。 当我尝试使用这些 StreamSubscriptions 时,_trxn...
我们正在使用 Google App Script 构建一个插件,并希望将其发布到 Google Workspace MarketPlace。我们设法使用 App Sc 的管理部署功能发布版本化部署...
在普通的 create-react-app --template typescript 文件夹中安装 eslint 失败
我正在尝试将 eslint 安装到从 TypeScript 模板创建的普通 create-react-app 文件夹中。 我运行了以下命令: % npx create-react-app REDACTED --模板打字稿
Flutter:Firebase 消息通知无法播放声音,但它在代码中请求
我为我的 flutter 项目实现了 firebase 消息传递,并请求声音和徽章权限: 等待Firebase.initializeApp(选项:DefaultFirebaseOptions.currentPlatform); Firebase 消息传递
Flutter Firebase 存储不起作用:没有默认存储桶
我正在尝试使用此功能将 pdf 文件上传到 Firebase-Storage: 静态未来 savePdf({ 必需的 Uint8List assetAsUint8List, 必需的字符串文件名, 必填
我有一个带有选择器的多输入组件,如下所示: 我有一个带有选择器的多输入组件,如下所示: <app-input type="currency" formControlName="currency"></app-input> <app-input type="date" formControlName="dateOfBirth"></app-input> 因此,从该组件中,我有一个像这样的选择器: @Component({ selector: 'app-input[type=currency]', }) @Component({ selector: 'app-input[type=date]', }) 现在,我想添加多个 currency 组件。一种用于默认货币成分,第二种用于具有动态货币符号的货币。 所以,我想通过选项让它变得不同。当选择器有选项时,显示带动态符号的货币,否则或默认,显示不带符号的默认货币。 我一直在尝试使用下面的这个选择器,但它不起作用。 对于默认货币: @Component({ selector: 'app-input:not([options])[type=currency]', }) 对于动态符号货币: @Component({ selector: 'app-input[options][type=currency]', }) 提前谢谢您 您可以像这样添加数据属性来区分选择器 无符号: @Component({ selector: 'app-input[type=currency]', }) 带有符号: @Component({ selector: 'app-input[type=currency][data-symbols]', }) html with symbols: <app-input type="currency" formControlName="currency" data-symbols></app-input> without symbols: <app-input type="currency" formControlName="currency"></app-input>
Angular 12:Firebase 模块未正确提供(?)
第一次使用Firebase,所以我不知道发生了什么。我没有修改使用 ng add @angular/fire 获得的配置,所以我的 AppModule 中的内容是: @NgModule({ 声明:[
致命错误:在 Firebase Storage Swift SDK 中解包可选值时意外发现 nil
我的 Swift 应用程序在 FirebaseStorage/Storage.swift 第 49 行遇到致命错误,其中使用 FirebaseApp.app() 创建 Firebase Storage 实例!。错误指出“致命...
考虑: PS C:\.dev\despesas-python> heroku 创建 app-despesas-pessoais-python » 警告:heroku 更新从 7.53.0 到 8.0.5 可用。 创建 ⬢ app-despesas-pessoais-python...完成 https...
Flutter Firebase Firestore 固定消息查询
我喜欢这个查询 查询> pageChat = _fireStore .collection('聊天') .where('chatUsersId', arrayContains: firebaseUser!.uid) .where('聊天...
我不想使用普通的 firebase 身份验证方法,而是使用 web3(特别是元掩码)来提供注册/登录,而无需电子邮件和密码。问题是我该如何处理
使用 Apple 登录而不使用 Firebase/Flutter
我有一个 firebase 项目,我在其中启用了通过 Google、Microsoft 的身份验证,最近我添加了 Apple。 Google 和 Microsoft 都可以正常工作,但 Apple 登录会抛出错误。我有
在 ReactJs 中使用 Firebase 身份验证功能设置身份验证上下文的最简单方法是什么? 我想在我的 ReactJs 网站中设置 Firebase 身份验证以及我想要的...
我想在 imageView 中显示图像,这就是我正在做的:我正在使用 FirebaseUI 显示来自 FireBase Storage 的图像。 FirebaseStorage存储DisplayImg; 存储参考存储参考; 私人
React Native useEffect() 未通过 firebase 和 onAuthStateChanged 触发
我有一个使用 React Native 和 Firebase 的应用程序。在 App.js 中,我有一个 useEffect 包装器,观察 onAuthStateChanged 以显示注册/登录或应用程序视图(如果用户对象处于预状态)...
无法使用 Firebase 的 authUI 登录 Google Auth
我在做什么 我目前正在 Android Studio 中开发一个使用 Firebase 进行登录过程的应用程序。在本例中,我们仅使用 Google 的社交登录。 问题 我完成了实施...
我的应用程序中有两个不同的用户对象,一个App\User 和一个App\Admin。对于两者,我有不同的警卫进行身份验证。 我的默认防护是模型 App\User 的网络防护并且...
Firebase 存储 CORS 对预检请求的响应未通过访问控制检查:它没有 HTTP 正常状态
我正在尝试将图像上传到 Firebase 存储。我在 Chrome 的控制台中记录了此错误: 访问 XMLHttpRequest:'https://firebasestorage.googleapis.com/v0/b/%22website-admin-
使用 Firebase TestLab 测试 React Native 应用程序
是否可以使用 Firebase TestLab 测试 React Native(Expo 托管)应用程序? 我还没有成功。几种可能的路线,到目前为止还没有成功: 1) 是否可以强制进行 Robo 测试...