有没有办法在不使用事件侦听器的情况下从 text/event-stream 获得单个响应?
Is there a way to get a single response from a text/event-stream without using event listeners?
我正在 Google 表格中编写脚本以从 API 检索值。 API 提供 text/event-stream
响应~每 10 秒。有没有一种方法可以在不使用异步函数或事件侦听器的情况下检索单个响应?我在 JavaScript 方面不是很擅长,但因为我在 Google 表格中工作,所以异步函数和事件侦听器似乎无法正常工作。根据我目前所学,使用 text/event-stream
响应的唯一方法是使用 EventSource
但我无法使用 Google Sheets.
不过,我的目标只是从端点检索一个响应,所以我可以在 Google 表格中以任何方式实现这一目标。这是有帮助的端点:
因为我无法在 Google 表格中使用 EventStream
,我尝试使用在这里找到的 polyfil:https://github.com/amvtek/EventSource/blob/master/dist/eventsource.js
然后 运行 它与:
function getRplantTotal() {
var source = new EventSource('https://pool.rplant.xyz/api2/poolminer2x/raptoreum/RThRfoQJg8qsoStLk7QdThQGmpbFUCtvnk/UlRoUmZvUUpnOHFzb1N0TGs3UWRUaFFHbXBiRlVDdHZua3x4');
source.addEventListener("message", function(e) {
console.log(e.data);
});
}
但这只是输出:
3:11:49 PM Notice Execution started
3:11:49 PM Notice Execution completed
我相信你的目标如下。
- 您想使用 Google Apps 脚本从
https://pool.rplant.xyz/api2/poolminer2x/raptoreum/RThRfoQJg8qsoStLk7QdThQGmpbFUCtvnk/UlRoUmZvUUpnOHFzb1N0TGs3UWRUaFFHbXBiRlVDdHZua3x4
的 URL 中检索第一个值,并希望在 Google 电子表格中使用检索到的值。
问题和解决方法:
当我看到https://github.com/amvtek/EventSource/blob/master/dist/eventsource.js
的时候,好像请求是运行,用的是XMLHttpRequest。 Google Apps Script处,使用了UrlFetchApp,不能使用XMLHttpRequest。我认为这可能是您当前问题的原因。但不幸的是,在当前阶段,这不能使用 text/event-stream
type at Google Apps Script。当使用 UrlFetchApp 请求您的 URL 时,它看起来像无限循环。这是目前的情况。
所以,根据My goal is just to retrieve one response from the endpoint though, so any way I can accomplish that in Google Sheets would be great.
和上面的情况,我想提出一个解决方法。当您在 Google 电子表格上 运行 设置脚本时,如何使用 Javascript 从 URL 中检索值? Google Apps 脚本可以使用对话框和边栏从 Javascript 端检索值。根据您的问题,当使用 Javascript 时,可以检索该值。我认为这可能会被使用。当此解决方法反映在 Google Apps 脚本中时,如下所示。
示例脚本:
Google Apps 脚本端:Code.gs
请将以下脚本复制并粘贴到 Google 电子表格的脚本编辑器的脚本文件中。
// Please run this function.
function main() {
SpreadsheetApp.getUi().showModalDialog(HtmlService.createHtmlOutputFromFile("index"), "sample");
}
function getValues(e) {
const obj = JSON.parse(e); // This is the 1st value from the URL of "https://pool.rplant.xyz/api2/poolminer2x/raptoreum/RThRfoQJg8qsoStLk7QdThQGmpbFUCtvnk/UlRoUmZvUUpnOHFzb1N0TGs3UWRUaFFHbXBiRlVDdHZua3x4"
console.log(obj)
// DriveApp.createFile("sample.txt", e); // When you use this, the retrieved value can be created as a text file.
}
Javascript方:index.html
请将以下脚本复制并粘贴到 Google 电子表格脚本编辑器的 HTML 文件中。请将文件名设置为 index.html
.
Values are retrieving now. Please wait. After the values were retrieved, this dialog is automatically closed.
<script>
var source = new EventSource('https://pool.rplant.xyz/api2/poolminer2x/raptoreum/RThRfoQJg8qsoStLk7QdThQGmpbFUCtvnk/UlRoUmZvUUpnOHFzb1N0TGs3UWRUaFFHbXBiRlVDdHZua3x4');
source.addEventListener("message", function(e) {
source.close();
google.script.run.withSuccessHandler(google.script.host.close).getValues(e.data);
});
</script>
- 在此脚本中,请从脚本编辑器中运行
main()
运行。这样,在电子表格上打开一个对话框,并使用 Javascript 从 URL 检索值,当检索到第一个值时,将值发送到 Google Apps 脚本端.因此,您可以在 getValues
. 的函数中使用检索到的值
注:
在此解决方法中,需要通过浏览器执行脚本。因为使用了Javascript。所以,请注意这一点。
作为另一种解决方法,当您只能使用 Javascript 时,工作表 API 可以与 Javascript 一起使用。 Ref 在这种情况下,还可以使用 Javascript.
检索值并将其放入电子表格
参考文献:
我正在 Google 表格中编写脚本以从 API 检索值。 API 提供 text/event-stream
响应~每 10 秒。有没有一种方法可以在不使用异步函数或事件侦听器的情况下检索单个响应?我在 JavaScript 方面不是很擅长,但因为我在 Google 表格中工作,所以异步函数和事件侦听器似乎无法正常工作。根据我目前所学,使用 text/event-stream
响应的唯一方法是使用 EventSource
但我无法使用 Google Sheets.
不过,我的目标只是从端点检索一个响应,所以我可以在 Google 表格中以任何方式实现这一目标。这是有帮助的端点:
因为我无法在 Google 表格中使用 EventStream
,我尝试使用在这里找到的 polyfil:https://github.com/amvtek/EventSource/blob/master/dist/eventsource.js
然后 运行 它与:
function getRplantTotal() {
var source = new EventSource('https://pool.rplant.xyz/api2/poolminer2x/raptoreum/RThRfoQJg8qsoStLk7QdThQGmpbFUCtvnk/UlRoUmZvUUpnOHFzb1N0TGs3UWRUaFFHbXBiRlVDdHZua3x4');
source.addEventListener("message", function(e) {
console.log(e.data);
});
}
但这只是输出:
3:11:49 PM Notice Execution started
3:11:49 PM Notice Execution completed
我相信你的目标如下。
- 您想使用 Google Apps 脚本从
https://pool.rplant.xyz/api2/poolminer2x/raptoreum/RThRfoQJg8qsoStLk7QdThQGmpbFUCtvnk/UlRoUmZvUUpnOHFzb1N0TGs3UWRUaFFHbXBiRlVDdHZua3x4
的 URL 中检索第一个值,并希望在 Google 电子表格中使用检索到的值。
问题和解决方法:
当我看到https://github.com/amvtek/EventSource/blob/master/dist/eventsource.js
的时候,好像请求是运行,用的是XMLHttpRequest。 Google Apps Script处,使用了UrlFetchApp,不能使用XMLHttpRequest。我认为这可能是您当前问题的原因。但不幸的是,在当前阶段,这不能使用 text/event-stream
type at Google Apps Script。当使用 UrlFetchApp 请求您的 URL 时,它看起来像无限循环。这是目前的情况。
所以,根据My goal is just to retrieve one response from the endpoint though, so any way I can accomplish that in Google Sheets would be great.
和上面的情况,我想提出一个解决方法。当您在 Google 电子表格上 运行 设置脚本时,如何使用 Javascript 从 URL 中检索值? Google Apps 脚本可以使用对话框和边栏从 Javascript 端检索值。根据您的问题,当使用 Javascript 时,可以检索该值。我认为这可能会被使用。当此解决方法反映在 Google Apps 脚本中时,如下所示。
示例脚本:
Google Apps 脚本端:Code.gs
请将以下脚本复制并粘贴到 Google 电子表格的脚本编辑器的脚本文件中。
// Please run this function.
function main() {
SpreadsheetApp.getUi().showModalDialog(HtmlService.createHtmlOutputFromFile("index"), "sample");
}
function getValues(e) {
const obj = JSON.parse(e); // This is the 1st value from the URL of "https://pool.rplant.xyz/api2/poolminer2x/raptoreum/RThRfoQJg8qsoStLk7QdThQGmpbFUCtvnk/UlRoUmZvUUpnOHFzb1N0TGs3UWRUaFFHbXBiRlVDdHZua3x4"
console.log(obj)
// DriveApp.createFile("sample.txt", e); // When you use this, the retrieved value can be created as a text file.
}
Javascript方:index.html
请将以下脚本复制并粘贴到 Google 电子表格脚本编辑器的 HTML 文件中。请将文件名设置为 index.html
.
Values are retrieving now. Please wait. After the values were retrieved, this dialog is automatically closed.
<script>
var source = new EventSource('https://pool.rplant.xyz/api2/poolminer2x/raptoreum/RThRfoQJg8qsoStLk7QdThQGmpbFUCtvnk/UlRoUmZvUUpnOHFzb1N0TGs3UWRUaFFHbXBiRlVDdHZua3x4');
source.addEventListener("message", function(e) {
source.close();
google.script.run.withSuccessHandler(google.script.host.close).getValues(e.data);
});
</script>
- 在此脚本中,请从脚本编辑器中运行
main()
运行。这样,在电子表格上打开一个对话框,并使用 Javascript 从 URL 检索值,当检索到第一个值时,将值发送到 Google Apps 脚本端.因此,您可以在getValues
. 的函数中使用检索到的值
注:
在此解决方法中,需要通过浏览器执行脚本。因为使用了Javascript。所以,请注意这一点。
作为另一种解决方法,当您只能使用 Javascript 时,工作表 API 可以与 Javascript 一起使用。 Ref 在这种情况下,还可以使用 Javascript.
检索值并将其放入电子表格