我正在尝试使用 R 中 twitchr 包的 get_videos 函数获取用户的视频信息。
当我运行它时,控制台会给我以下输出:
videos <- get_videos(user_id = 613890167,clean_json = T)
Error: Internal error in `vec_slice_impl()`: Unexpected `NULL`.
Run `rlang::last_error()` to see where the error occurred.
> rlang::last_error()
<error/rlang_error>
Internal error in `vec_slice_impl()`: Unexpected `NULL`.
Backtrace:
1. twitchr::get_videos(user_id = 613890167)
8. dplyr::bind_rows(.)
9. vctrs::vec_rbind(!!!dots, .names_to = .id)
Run `rlang::last_trace()` to see the full context.
> rlang::last_trace()
<error/rlang_error>
Internal error in `vec_slice_impl()`: Unexpected `NULL`.
Backtrace:
█
1. ├─twitchr::get_videos(user_id = 613890167)
2. │ └─twitchr:::make_request(...)
3. │ └─twitchr:::clean_videos(response_content)
4. │ └─`%>%`(...)
5. ├─twitchr:::date_formatter(.)
6. │ └─`%>%`(...)
7. ├─dplyr::mutate(...)
8. └─dplyr::bind_rows(.)
9. └─vctrs::vec_rbind(!!!dots, .names_to = .id)
10. └─(function () ...
它似乎与videos <- get_videos (user_id = 613890167, clean_json = F)
.
所以我尝试在get_videos函数中查找错误:
function (id = NULL, user_id = NULL, game_id = NULL, after = NULL,
before = NULL, first = NULL, language = NULL, period = NULL,
sort = NULL, type = NULL, clean_json = TRUE)
{
d <- make_request(end_point = "videos", clean_json = clean_json,
id = id, user_id = user_id, game_id = game_id, after = after,
before = before, first = first, language = language,
period = period, sort = sort, type = type)
return(d)
}
在make_request
function (end_point, ..., clean_json = TRUE)
{
formatted_params <- format_parameters(...)
base_url <- "https://api.twitch.tv/helix/"
url_end_point <- glue::glue("{base_url}{end_point}{formatted_params}")
response <- httr::GET(url = url_end_point)
check_status(response)
response_content <- httr::content(response)
if (length(response_content$data) == 0) {
usethis::ui_warn("The request is successful, however, there is no data in the response.")
return(NULL)
}
if (clean_json == TRUE) {
if (end_point == "bits/cheermotes") {
result <- clean_bits_cheermotes(response_content)
}
if (end_point == "videos") {
result <- clean_videos(response_content)
}
if (end_point == "users") {
result <- clean_users(response_content)
}
if (end_point == "games") {
result <- clean_games(response_content)
}
if (end_point == "games/top") {
result <- clean_top_games(response_content)
}
if (end_point == "clips") {
result <- clean_clips(response_content)
}
if (end_point == "search/channels") {
result <- clean_search_channels(response_content)
}
if (end_point == "tags/streams") {
result <- clean_get_all_stream_tags(response_content)
}
if (end_point == "streams/tags") {
result <- clean_stream_tags(response_content)
}
if (end_point == "search/categories") {
result <- clean_search_categories(response_content)
}
if (end_point == "users/follows") {
result <- clean_get_follows(response_content)
}
}
else {
result <- response_content
}
return(result)
}
在clean_videos
function (response_content)
{
data_clean <- response_content %>% purrr::pluck("data") %>%
dplyr::bind_rows() %>% date_formatter()
return_list <- list(data = data_clean, pagination = response_content$pagination$cursor)
return(return_list)
}
问题似乎是由dplyr :: bind_rows ()
确实引起的:
videos <- get_videos(user_id = 238617149,clean_json = F)
xx=videos %>% purrr::pluck("data")
dplyr::bind_rows(xx)
Error: Internal error in `vec_slice_impl()`: Unexpected `NULL`.
Run `rlang::last_error()` to see where the error occurred.
data.table::rbindlist(xx)
而不是dplyr::bind_rows(xx)
似乎工作。
但是,如果我定义函数clean_videos写作data.table::rbindlist(xx)
而不是dplyr::bind_rows(xx)
:
clean_videos = function (response_content)
{
data_clean <- response_content %>% purrr::pluck("data") %>%
data.table::rbindlist() %>% date_formatter()
return_list <- list(data = data_clean, pagination = response_content$pagination$cursor)
return(return_list)
}
当我再次尝试时videos <- get_videos(user_id = 613890167, clean_json = T)
,控制台给了我与输出相同的错误。
我该如何解决这个问题?