- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试使用其 API 将 CustomField 设置为 Manychat 订阅者。他们的 API 链接是:
https://api.manychat.com/swagger#/Subscriber/post_fb_subscriber_setCustomFieldByName
以下是请求代码:
var rp = require("request-promise");
var config = require("./../campaign_config.json");
module.exports = { setWaybillForUser : async function setWaybillForUser(userid,waybill,dbRef){
var options = { method: 'POST',
uri: 'https://api.manychat.com/fb/subscriber/setCustomFieldByName',
headers:
{'Cache-Control': 'no-cache',
Accept: '*/*',
Authorization: config.Manychat_token,
'Content-Type': 'application/json' },
body:
{ subscriber_id: parseInt(userid),
field_name: 'waybill',
field_value: waybill },
json: true };
try {
const response = await rp(options);
console.log(response);
if (response.status == "success") {
return dbRef.child('datanode').child(userid).update({
"Order_Status": 3
}).then(function () {
//do nothing.
}).catch(function (error) {
console.log(error);
});
}
}
catch (err) {
console.log(err.message);
}
}
};
我多次调用此函数,因为必须为许多订阅者运行该函数。调用它的代码是:
dbRef.child("subData").once('value').then(function(snapshot){
var data = snapshot.val();
var keys = Object.keys(data);
let promiseArray = [];
let orderStatusArr =[];
for(let i=0; i< keys.length; i++){
var order_status = data[keys[i]].Order_Status;
var subid = data[keys[i]].UserID;
var waybill = data[keys[i]].Waybill_Number;
if(order_status == 1){
orderStatusArr.push({
"Order_Status":order_status,
"UserID": subid,
"Waybill_Number":waybill
});
}
}
for(let i=0; i<orderStatusArr.length;i++){
var order_status = orderStatusArr[i].Order_Status;
var subid = orderStatusArr[i].UserID;
var waybill = orderStatusArr[i].Waybill_Number;
promiseArray.push(setWaybillsForUser.setWaybillForUser(subid,waybill,dbRef));
}
Promise.all(promiseArray).then(() => {
// all done here
response.send("success");
}).catch(function(err) {
console.log(err.message);
});
})
当我运行代码时 - 它会记录某些请求的成功,同时为其他请求抛出上述内容。它一次能够成功为大约 10 个订阅者运行代码。
最佳答案
来自this page :
Is there any limit to a number of API calls?
There is only a request per second limit for POST methods (per page):
- /fb/sending/sendFlow, /fb/sending/sendContent - 25 RPS;
- /fb/subscriber/addTag, /fb/subscriber/removeTag, /fb/subscriber/setCustomField - 10 RPS.
因此,从这一点以及您发布的症状来看,似乎第二条规则适用
关于node.js - 429 - {"status":"error","message":"Api max rps reached"} 向manychat sendFlow API发送请求时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59674706/
快速且可能简单的 Lambda 问题: 我有一家有评论的餐厅。我想查询具有以下内容的那个: 最大(平均评分) 和 Max(ReviewCount) 和 Max(NewestReviewDate) 和
在尝试使用 C++17 折叠表达式时,我尝试实现 max sizeof ,其中结果是类型 sizeof 的最大值。我有一个使用变量和 lambda 的丑陋折叠版本,但我想不出一种使用折叠表达式和 st
我目前正在使用 C 并遇到了一些我觉得有趣的东西,但似乎在这里找不到任何类似的东西。 我正在为数组(大小 1000000)静态分配内存。我知道这相当大并且有可能引起问题。但是,使用 10^6 不会出现
我有一个具有 max-height 的 div 和其中的图像,应该使用 max-width:100% 和 max-height:100%。在 Chromium 中,这是可行的,但 Firefox 仅使
我有一个最大高度的 div 和里面的一个图像,它应该使用最大宽度:100% 和最大高度:100%。在 Chromium 中,这是可行的,但 Firefox 仅使用最大宽度而忽略最大高度。 div#ov
在一本在线 awk 手册中我找到了例子awk '{ if (NF > max) max = NF } END { print max }' 该程序打印任何输入行上的最大字段数。但我不明白 awk 如何
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我正在制作一个非循环图数据库。 表 Material (id_item,id_collection,...)主键(id_item,id_collection) (item可以是collection本身
我有以下两个表。 1.电影详情(电影ID、电影名称、评分、票数、年份) 2.电影类型(Movie-ID,Genre) 我正在使用以下查询来执行连接并获得每个评分最高的电影流派。 select Movi
我有一个查询,我想返回 idevent 中给定传感器 ID (sensorID) 范围内的最高 ID 值,但是查询没有返回最高值。 我运行查询时减去 max() 语句的结果: mysql> SELEC
SUM(MAX() + MAX()) 有正确的方法吗? 这是我一直在努力做的事情 SELECT SUM(MAX(account.BALANCE1) + MAX(account.BALANCE2))
这个问题类似于CSS media queries: max-width OR max-height , 但由于我的代表不够高,我无法在回复中添加评论(问题),我想在原始问题中添加。 与其他主题中的发帖
Jon Skeet今天报告(source): Math.Max(1f, float.NaN) == NaN new[] { 1f, float.NaN }.Max() == 1f 为什么? 编辑:双倍
这个问题已经有答案了: Java 8 stream's .min() and .max(): why does this compile? (5 个回答) 已关闭 7 年前。 我正在学习1z0-809
我在处理一些数据库记录时遇到了一些挑战。 我需要为特定列获取具有 MAX 值的行,并且这些记录必须介于两个时间戳值之间。 这是SQL查询 SELECT id, MAX(amount), created
我想在媒体查询中使用 AND 条件。我使用了下面的代码,但是没有用 @media screen and (max-width: 995px AND max-height: 700px) { } 最佳答
在编写 CSS 媒体查询时,有什么方法可以用“或”逻辑指定多个条件吗? 我正在尝试做这样的事情: /* This doesn't work */ @media screen and (max-widt
我对仅使用 max(list array) 和 np.max(list array) 之间的区别有疑问。 这里唯一的区别是 Python 返回代码所需的时间吗? 最佳答案 它们在边缘情况下可能不同,例
例如: a = [[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.
这个问题在这里已经有了答案: Java 8 stream's .min() and .max(): why does this compile? (5 个答案) 关闭 6 年前。 我正在学习 1z0
我是一名优秀的程序员,十分优秀!