我可以使用R在facebook中成功验证。但我无法访问我的基本详细信息。 fbOuth文件也正确创建
代码段和结果
graph G {
ratio="fill";
margin=0;
0 [label=""];
1 [label=""];
2 [label=""];
3 [label=""];
4 [label=""];
5 [label=""];
6 [label=""];
7 [label=""];
8 [label=""];
9 [label="", shape=none];
10 [label="", shape=none];
11 [label="", shape=none];
12 [label="", shape=none];
13 [label="", shape=none];
14 [label="", shape=none];
15 [label="", shape=none];
16 [label="", shape=none];
17 [label="", shape=none];
18 [label="", shape=none];
19 [label="", shape=none];
20 [label="", shape=none];
0 -- 1;
0 -- 2;
0 -- 3;
0 -- 4;
1 -- 5;
2 -- 5;
2 -- 6;
3 -- 6;
3 -- 7;
4 -- 7;
4 -- 8;
1 -- 8;
1 -- 9;
2 -- 10;
3 -- 11;
4 -- 12;
5 -- 13;
6 -- 14;
7 -- 15;
8 -- 16;
5 -- 17;
6 -- 18;
7 -- 19;
8 -- 20;
11 -- 18 [style=invis];
14 -- 10 [style=invis];
10 -- 17 [style=invis];
13 -- 9 [style=invis];
9 -- 16 [style=invis];
20 -- 12 [style=invis];
12 -- 15 [style=invis];
19 -- 11 [style=invis];
}
**********这一切都很好
library(Rfacebook)
finFacebookConnect <- function(type = "app")
{
if(type == "app")
{
fb_oauth <- fbOAuth(app_id="288059621629308",
app_secret="****",
extended_permissions = TRUE)
}
else if(type == "token")
{
# the code for the token connection to be added over here
}
save(fb_oauth, file="fb_oauth")
}
load("fb_oauth")
我在这里得到一个错误 “callAPI(查询,令牌)出错: 必须使用活动访问令牌来查询有关当前用户“ 。
的信息我无法理解相同的原因或如何解决它。我尝试了多种方法,包括文件访问和网上问题检查
我们非常感谢您的帮助或任何检查方向
答案 0 :(得分:0)
我也有同样的问题。但是我找到了你可以参考的解决方案。
http://www.listendata.com/2017/03/facebook-data-mining-using-r.html
如果您有任何问题,请告诉我。
每天都很开心。
谢