R package to interact with a Solid server: https://solidproject.org/
It uses the httr2 package to implement the Solid-OIDC OAuth flow. See: https://solid.github.io/solid-oidc/primer/
Example:
library(devtools)
install_github("josephguillaume/solidR",depend=TRUE)
library(solidR)
library(httr2)
client <- solid_client_register_dyn("https://solidcommunity.net")
request(url) %>%
req_oauth_solid_dpop(client) %>%
req_perform() %>%
resp_body_string()
Some higher level functions are also provided:
rdf_parse_solid
returns parsed triples in an rdflib rdf objectThis package was created for personal use and is unmaintained.
There are no plans to make it available on CRAN. If you wish to maintain this package, feel free to fork it. If you notify me, I'll include a link to the maintained version here.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.