hello
I have been trying to get data from https://nonfungible.com/market/history/decentraland?filter=nftTicker%3DLAND&filter=saleType%3Dsecondary&filter=blockTimestamp%3D2019-03-01%2C2021-03-18&length=10&sort=blockTimestamp%3Ddesc&start=70
I tried to select Asset ID with this code
library(rvest)
library(dplyr)
link = "https://nonfungible.com/market/history/decentraland?filter=nftTicker%3DLAND&filter=saleType%3Dsecondary&filter=blockTimestamp%3D2019-03-01%2C2021-03-18&length=10&sort=blockTimestamp%3Ddesc&start=70"
page = read_html(link)
Asset= page %>% html_nodes(".dEXmFm:nth-child(2)") %>% html_text()
Asset
but I got
Asset
character(0)
any help or advice will be appreciated