- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 Firebase 身份验证模拟器,我发现即使模拟器正在运行并启用,身份验证也会在生产环境中发生。
我在 firebase/auth.js
// imports and stuff...
firebase.initializeApp(firebaseConfig);
export const firebaseAuth = firebase.auth()
if (DEBUG_MODE) {
firebaseAuth.useEmulator('http://localhost:9099');
}
// declare a class to make mocking easier...maybe I just don't know how to properly mock constants?
export class FirebaseAuth {
static getAuth() {
return firebaseAuth
}
}
然后,我有一个 SignIn 组件,就像在 https://github.com/firebase/firebaseui-web-react#using-styledfirebaseauth-with-local-state 中找到的 SignInScreen
示例一样- 尽管唯一的区别是该组件使用 firebaseAuth
,它是从上面看到的 auth.js
导出的。
import React from 'react';
import StyledFirebaseAuth from 'react-firebaseui/StyledFirebaseAuth';
import { uiConfig, FirebaseAuth } from '../firebase/auth';
import { useQuery } from '../hooks';
function SignIn() {
let params = useQuery()
let redirectUrl = params.get('redirect_url');
const config = Object.assign({}, uiConfig, {signInSuccessUrl: redirectUrl})
return (
<div>
<p>Please sign-in:</p>
<StyledFirebaseAuth uiConfig={config} firebaseAuth={FirebaseAuth.getAuth()} />
</div>
);
}
export default SignIn
当我在本地运行我的 React 应用程序时,我看到 firebase 正在根据我的应用程序底部显示的消息检测模拟器:
但是,我发现当我尝试登录时使用了 firebase 身份验证的生产实例。新用户创建于 https://console.firebase.google.com/u/0/project/sagereact/authentication/users而不是在我的本地模拟器上。
此外,当我硬刷新我的 web 应用程序时,我会看到以下日志行,这也会让我注销:
⚠ Received a signed JWT. Auth Emulator does not validate JWTs and IS NOT SECURE
我已验证我的模拟器正在运行:
❮❮❮ firebase emulators:start
i emulators: Starting emulators: auth, functions, firestore, database, hosting, pubsub
...stuff
┌────────────────────────────────────────────────────────────────┐
│ ✔ All emulators ready! View status and logs at localhost:4000 │
└────────────────────────────────────────────────────────────────┘
┌────────────────┬────────────────┬──────────────────────────┐
│ Emulator │ Host:Port │ View in Emulator UI │
├────────────────┼────────────────┼──────────────────────────┤
│ Authentication │ localhost:9099 │ localhost:4000/auth │
├────────────────┼────────────────┼──────────────────────────┤
│ Functions │ localhost:5001 │ localhost:4000/functions │
├────────────────┼────────────────┼──────────────────────────┤
│ Firestore │ localhost:8080 │ localhost:4000/firestore │
├────────────────┼────────────────┼──────────────────────────┤
│ Database │ localhost:9000 │ localhost:4000/database │
├────────────────┼────────────────┼──────────────────────────┤
│ Hosting │ localhost:5055 │ n/a │
├────────────────┼────────────────┼──────────────────────────┤
│ Pub/Sub │ localhost:8085 │ n/a │
└────────────────┴────────────────┴──────────────────────────┘
Other reserved ports: 4400, 4500
Issues? Report them at https://github.com/firebase/firebase-tools/issues and attach the *-debug.log files.
和
我如何弄清楚为什么 firebase 没有使用我的本地模拟器进行身份验证?
最佳答案
您需要从您的客户端代码设置 Auth 模拟器。这是 Dart 中使用 Flutter 的等价物:
void main() async {
WidgetsFlutterBinding.ensureInitialized();
var app = await Firebase.initializeApp();
if (USE_FIRESTORE_EMULATOR) {
FirebaseFirestore.instance.settings = Settings(host: 'localhost:8080', sslEnabled: false, persistenceEnabled: false);
FirebaseFunctions.instance.useFunctionsEmulator(origin: 'http://localhost:5001');
FirebaseAuth.instanceFor(app: app).useEmulator('http://localhost:9099');
}
对于 firebaseui-web-react
,请查看此 Pull Request (https://github.com/firebase/firebaseui-web-react/pull/125) 并确保您使用的是正确的版本。
关于reactjs - 为什么 Firebase 身份验证模拟器使用生产环境?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65531090/
我在一个网站上工作,该网站在生产中只有 aspx 文件和 bin 目录和文件。任何人都知道这个网站是如何部署的,我通常有我的网站,我也会提交代码。 我的问题 2. 如何在同一台服务器上创建测试网站?我
您好,我认为这应该是一个相当简单的问题,但我对管理 git 不太熟悉。 我使用的是非常流行的 http://nvie.com/posts/a-successful-git-branching-mode
目前我的网站(生产服务器)已经有很多代码了。现在我想开始在我的项目中使用 Git 并为我的团队设置一个暂存服务器。谁能给我任何建议? 这是我脑海中的画面: Production
我目前正在学习 Erlang SO 用户能否提供有关他们的任何 Erlang 应用程序部署的有趣示例? 我想深入了解 Erlang 在过去的电信中的常见用途,以及 Erlang 在开发/部署过程中带来
我关注了Ryan's screencast并部署到 VPS。所以我使用 Unicorn + nginx + github + Ubuntu 12.04 LTS + capistrano。我也使用 i1
我想在 Azure 中维护临时环境和生产环境。每个都应该有自己的 blob 存储和 sql 存储。实现这一目标的最佳方法是什么?设置临时和生产 SQL Server 以及两个 Blob 存储帐户? 最
我无法使用 Electron 打包程序在内置的 Electron 应用程序中打开chrome开发工具。 我已经尝试过mainWindow.webContents.openDevTools(),但这没有
我有一个 Azure 应用程序服务环境。 可以在同一个 ASE 中运行多个应用服务计划(开发、测试和生产)吗? 基本上,我知道他们会共享前端池,我认为这很好,因为那里没有运行应用程序代码,并且它“..
我是 Maven 新手,有 Rails 背景。在较高级别上,如果我正在运行测试、在本地运行应用程序以及在部署到生产环境时,我希望连接到不同的数据库。 这就是我的想法。当我运行 mvn test 时,它
我有一个 Azure 应用程序服务环境。 可以在同一个 ASE 中运行多个应用服务计划(开发、测试和生产)吗? 基本上,我知道他们会共享前端池,我认为这很好,因为那里没有运行应用程序代码,并且它“..
我正在使用 faSTLane\produce 脚本制作一个新应用程序,我收到以下错误消息: in `parse_response': {"data"=>nil, "messages"=>{"warn"
使开发人员能够构建包含私有(private)数据的系统的当前做法是什么?谁能指出这类事情的“最佳实践”指南? 我们这里有一个 Catch-22,因为开发人员需要编写与具有被认为是“私有(private
我有一个连接 Azure SQL Server 的 Azure 云服务。当我第一次设置这个时,我真的不太了解自己在做什么,只是想熟悉 Azure。所以现在我想利用我所拥有的东西并将其转变为可靠的部署结
我是 Cordova 的新手。抱歉,如果这些是业余问题。我想详细了解典型手机应用程序的设置和架构。 我有一个本地版本的 Meteor Cordova 正在运行,它通过 Modulus 连接到远程服务器
我一直在寻找一些在一些 POS(销售点)设备和服务器之间同步数据的选项。 SymmetricDS似乎是具有商业友好许可证的选项之一。作为一个 Codehaus 项目确实保证了一定程度的质量,所以我同意
在 PHP 开发中,可以通过服务器的“环境”变量确定应用程序是在生产环境还是开发环境中运行。 在 tomcat 服务器上是否有类似的变量可用,或者是否有更好的方法将应用程序用于生产和开发? 最佳答案
我正在做一个项目,我需要使用 TwitterAPI 检索 Twitter 消息,处理它们并将它们存储在数据库中。我正在使用 Producer/Consumer BlockingQueue,其中元素的作
这个问题类似于:iPhone development - what is the difference between a development and distribution provision
我正在尝试根据 URL 在 Drupal 中设置环境。例如,如果我访问 mysite.local,它将使用 localdb 并将站点名称更改为“Local Mysite”;如果我转到 mysite.c
我今天一直在阅读 Magento 中的数据库同步。 我目前正在努力解决的一件事是在开发期间和上传到生产期间需要同步什么。现在假设一批更改将包含对数据库和类似代码的更改,下面是我对模型工作流的理解(我目
我是一名优秀的程序员,十分优秀!