Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/r/75.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
twitchr::get_videos在'vec_slice_impl()'中出现内部错误:意外的'NULL`_R_Dplyr_Twitch_Twitch Api - Fatal编程技术网

twitchr::get_videos在'vec_slice_impl()'中出现内部错误:意外的'NULL`

twitchr::get_videos在'vec_slice_impl()'中出现内部错误:意外的'NULL`,r,dplyr,twitch,twitch-api,R,Dplyr,Twitch,Twitch Api,我正在尝试使用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. >

我正在尝试使用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 () ...
data.table::rbindlist(xx)
而不是
dplyr::bind_rows(xx)
似乎可以工作

但是如果我定义函数clean_videoswriting
data.table::rbindlist(xx)
而不是
dplyr::bind_rows(xx)

clean\u videos=功能(响应内容)
{
数据清理%purrr::清除(“数据”)%%>%
data.table::rbindlist()%>%date\u格式化程序()

return\u list这是否回答了您的问题?编辑:或者,编辑下面的答案。使用assignInNamespace函数,它工作正常。谢谢。
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)
}
    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)
}
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)
}
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.
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)
}