gpt4 book ai didi

node.js - Node 模块 fbgraph : will this deal well with lots of users?

转载 作者:搜寻专家 更新时间:2023-10-31 23:18:57 25 4
gpt4 key购买 nike

我希望将 facebook Graph API 集成到我的 NodeJS 服务器中。现在,the fbgraph module看起来像一个非常简单直接的解决方案来满足我的需求。我唯一关心的是 fbgraph 为 facebook 用户设置 accessTokens 的方式。根据api描述,accessToken设置如下:

graph.setAccessToken(access_token);

我的一个担心如下:如果我的网站获得很大的知名度并且我每秒有数百个请求到 facebook 图表,我将不得不为每个用户设置(似乎是)全局变量我想与之互动。在处理前一个用户的 api 请求之前,graph api 是否有机会为用户设置访问 token ?直觉上我觉得我应该使用一个模块,其中包含每个单独的 API 调用的访问 token ,但也许这不是必需的......

谁能澄清我的担心是否有道理?

最好的,
萨米

最佳答案

这是一个合理的担忧,事实上已经有 an issue raised about it :

criso commented:

doh! good point. I'm thinking that this should probably be added as middleware so that the request is always tied in with the session. Not sure when I'll be able to implement this. If you have time, go nuts!

然后

criso commented:

Actually, instead of doing this:

graph.get("/me", req.session.access_token, function(err, data) {
console.log(data);
});

Just do:

graph
.setAccessToken(req.session.access_token)
.get("/me", function(err, data) {
console.log(data);
});

关于node.js - Node 模块 fbgraph : will this deal well with lots of users?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10966178/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com