我正面临无法正确跟踪Facebook安装的问题。我怀疑这与我们实施的GDPR设置有关,但不是100%确定。
根据以下文档, https://developers.facebook.com/docs/app-events/best-practices/gdpr-compliance/
我们有以下代码:
library(rvest)
library(dplyr)
# Generate some sample html
a <- rep("<p></p>", 200) %>% paste0(collapse="")
a <- a %>% read_html %>% html_nodes("p")
a %>% length
# 200
# But only see first 20 (want to see all)
我们还有什么需要关注的吗?