get_islands | R Documentation |
Get list of Fortnite Creative islands
get_islands(limit = 50, offset = 0, order_by = "plays", order = "desc")
limit |
Maximum number of results (default: 50) |
offset |
Number of results to skip |
order_by |
Field to order by ("plays", "lastPlayed", etc.) |
order |
Sort order ("asc" or "desc") |
A tibble with island data
# Example with mock response
mock_response <- list(
islands = list(
list(code = "1234-5678-9012", title = "Mock Island"),
list(code = "2345-6789-0123", title = "Test Island")
)
)
# In practice, this would come from the API
## Not run:
islands <- get_islands(limit = 50)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.