- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
save time and skip to answer
我的 axios 'GET' this.props.profile.id
从 react-redux-firebase
正确登录到控制台有什么问题,但那是另一回事了。
...
const response = await axios.get(
"https://us-central1-thumbprint-1c31n.cloudfunctions.net/listCharts",
{ 'seatsioid': this.props.profile.id }
);
还是云函数 header ?
const functions = require('firebase-functions');
//const admin = require('firebase-admin');
const { SeatsioClient } = require('seatsio')
const cors = require('cors')
//admin.initializeApp(functions.config().firebase);
// // Create and Deploy Your First Cloud Functions
// // https://firebase.google.com/docs/functions/write-firebase-functions
//
exports.listCharts = functions.https.onRequest(async(req, res) => {
cors(req, res, async () => {
res.set('Access-Control-Allow-Origin', 'https://1c31n.csb.app');
//res.set('Access-Control-Allow-Credentials', 'true');
res.set('Access-Control-Allow-Methods', 'GET');
res.set('Access-Control-Allow-Headers', 'Content-Type', 'X-Requested-Width', 'Accept', 'seatsioid')
res.set('Access-Control-Max-Age', '60');
var allowedOrigins = ['https://1c31n.csb.app', 'https://1c31n.codesandbox.io'];
var origin = req.headers.origin;
if(allowedOrigins.indexOf(origin) > -1){}
const seatsioid = **req.get('seatsioid')
let clientAdmin = new SeatsioClient('<THIS_IS_MY_ADMIN_SEATSIO_secretKey>')
let subaccountInfo = await clientAdmin.subaccounts.retrieve(seatsioid);
let secretKey = subaccountInfo.secretKey
let clientDesignerKey = subaccountInfo.designerKey
let charts = []
let clientUser = new SeatsioClient(secretKey)
for await(let chart of clientUser.charts.listAll()){
charts.push(`chart":"${chart.key}`)
}
let couple = {
charts,
clientDesignerKey
}
res.send(couple)
})
})
谢谢
最佳答案
这对我来说花了几天时间。希望这对读者有所帮助
express' cors middleware :https://expressjs.com/en/resources/middleware/cors.html
Google Cloud Function abstraction for cors middleware : https://cloud.google.com/functions/docs/writing/http
Call GCFunctions thru http (for fetch) :https://firebase.google.com/docs/functions/http-events
react 获取(URL,{})
async componentDidMount() {
//console.log(this.props.profile)
//this.setState({ posterOptions: this.props.profile.pages.unshift('post as myself')})
//const seatsioid = this.props.profile.id;
await fetch(
"https://us-central1-foldername.cloudfunctions.net/function",
{
method: "POST",
credentials: "include",
headers: {
"Content-Type": "Application/JSON",
"Access-Control-Request-Method": "POST"
},
body: JSON.stringify({ seatsioid: this.props.profile.id }),
maxAge: 3600
//"mode": "cors",
}
)
.then(response => response.json())
.then(body => {
console.log(body);
//const reader = response.body.getReader()
//reader.read().then(value => {
//console.log(value);
this.setState({
allCharts: body.couple[0].charts,
secretKey: body.couple[0].secretKey
});
})
.catch(err => console.log(err));
}
谷歌云函数
const functions = require("firebase-functions");
const { SeatsioClient } = require("seatsio");
const cors = require("cors")({
origin: true,
allowedHeaders: [
"Access-Control-Allow-Origin",
"Access-Control-Allow-Methods",
"Content-Type",
"Origin",
"X-Requested-With",
"Accept"
],
methods: ["POST", "OPTIONS"],
credentials: true
});
exports.listCharts = functions.https.onRequest((req, res) => {
// Google Cloud Function res.methods
res.set("Access-Control-Allow-Headers", "Content-Type");
res.set("Content-Type", "Application/JSON");
// CORS-enabled req.methods, res.methods
return cors(req, res, async () => {
res.set("Content-Type", "Application/JSON");
var origin = req.get("Origin");
var allowedOrigins = [
"https://www.yoursite.blah",
"https://yoursite2.blah"
];
if (allowedOrigins.indexOf(origin) > -1) {
// Origin Allowed!!
res.set("Access-Control-Allow-Origin", origin);
if (req.method === "OPTIONS") {
// Method accepted for next request
res.set("Access-Control-Allow-Methods", "POST");
//SEND or end
return res.status(200).send({});
} else {
// After req.method === 'OPTIONS' set ["Access-Control-Allow-Methods": "POST"]
// req.method === 'POST' with req.body.{name} => res.body.{name}
// req.method === 'PUT' with req.body.{name}, no res.body.{name}
let couple = [];
if (req.body.seatsioid) {
const seatsioid = req.body.seatsioid;
let clientAdmin = new SeatsioClient("YOUR_ADMIN_KEY");
let subaccountInfo = await clientAdmin.subaccounts.retrieve(seatsioid);
let secretKey = subaccountInfo.secretKey;
let charts = [];
let clientUser = new SeatsioClient(secretKey);
for await (let chart of clientUser.charts.listAll()) {
charts.push(`chart":"${chart.key}`);
}
couple = [
{
charts: charts,
secretKey: secretKey
}
];
//SEND or end
res.status(200).send({ couple });
} else {
//SEND or end
res.status(400).send("No seatsioid defined!");
}
}
} else {
//Origin Bad!!
//SEND or end
return res.status(400).send("no access for this origin");
}
});
});
有 1500 个代表点数的人应该为他们的其他用户添加 seatio 标签来替换 reactjs 或 javascript,谢谢
关于javascript - React Fetch Google Cloud Function http cors req.method 选项,POST,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58817987/
我正在开发一个 nodejs 项目快速应用程序。我的路线看起来像这样: router.get('/observe/:fileName', function(res, req){ var req
从 Facebook 初始成功登录并使用 passport-facebook 1.0.3 和 express 4.6.1 登录重定向回调后,req.session.passport 和 req.use
req.body有什么区别和 req.params.all()何时用于风帆 Controller ? 最佳答案 req.body是从请求正文中解析出来的任何内容,例如 POST 中的有效负载要求。 r
我想知道 req.query 和 req.body 有什么区别? 下面是一段代码,其中req.query用来。如果我使用 req.body 会发生什么而不是 req.query . 以下函数被调用作为
我以前问过类似的问题,但我注意到它在 Javascript 部分。对于现在可能出现的问题,我也有更具体的想法。 基本上,req.session.passport 在我的日志中是空的。每当我开始浏览我的
我不久前从某处盗取了这段代码,并想回来进一步了解它。 iv 在 pi 上运行它已经有一段时间了,没有任何问题,但是当我运行网络服务器时,我需要恢复操作系统的备份,自从这样做以来,我一直无法让它运行,如
Req.isAuthenticated()在登录后以及注册新用户后返回false。我需要做什么来修复它? 我有一个具有两个不同登录名的应用程序。一个用于“用户”,另一个用于“雇员”。 “用户”用户是我
我一直在拼凑来自几个不同教程的代码,以使用 MEAN 堆栈构建一个基本的待办事项应用程序,使用 node、express、angular 和 mongodb。一个教程介绍了为 GET、POST 和 D
我使用以下路由接收 url 中的参数: app.get('/:lang', function(req, res) { }); 我将推送 lang 的值并将其发送到一个函数,但我希望只能在用户不输入任何
根据条件,我需要销毁用户的当前 session ,并将他重定向到带有消息的登录页面。我使用 flash 来获得只显示一次的消息。除了这里,这在我的应用程序上无处不在,因为这里我在 req.sessio
Sample 'Advanced REST Client' Request 我正在使用 Postman 和高级 REST 客户端为以下代码创建基本 POST 请求 - 'use strict'; va
if (!req.session.cart) { req.session.cart = { styles: styles,
我正在尝试使用 NodeJs 脚本将文件上传到服务器。我正在尝试以下操作。 HTML Upload a zip file
通过 req.query[myParam] 和 req.params.myParam 获取 QUERY_STRING 参数有区别吗?如果是这样,我应该什么时候使用哪个? 最佳答案 鉴于这条路线 app
在 Shiny 的应用程序中,我使用 req 检查输入的有效性如果输入的要求为 TRUE(即不为空、不为 FALSE 等),则更新输出。 如果 req 我想运行一些代码是 FALSE,即使用 req(
我正在使用 Express 和 Body Parser。给定以下标题键: X-Master-Key 当我使用下面的代码片段时,它无法输出值 req.headers['X-Master-Key'] //
要么使用正文解析器 application/x-www-form-urlencoded body parser 或 json body parser 产生相同的结果。 这就是我调用 API 的方式 $
在nodejs中我们通常会做这样的事情: req.checkBody('name', 'Group name is required.').notEmpty(); 同样,我也做了这样的事情: req.
我正在使用 Multer 在 keystone 环境中解析多部分表单,并且无法访问路由 Controller 内的 req.body 和 req.file 数据 路线/index.js var key
我想了解这是为什么: req.session._id = doc._id; req.session.id = doc._id; console.log(typeof req.session._id);
我是一名优秀的程序员,十分优秀!