Obtains football game team box scores from the NCAA API
ncaa_fb_game_info(game_id)
the game_id of a given NCAA FB game from the NCAA API
a data frame with NCAA FB game info with a single row
# \donttest{
ncaa_fb_game_info(5931773)
#> # A tibble: 1 × 60
#> input_md5sum away_score away_names_6char away_names_short away_names_seo
#> <chr> <chr> <chr> <chr> <chr>
#> 1 dac38da9b393f188b… 24 UGA Georgia georgia
#> # … with 55 more variables: away_names_full <chr>, away_color <chr>,
#> # away_seed <chr>, away_record <chr>, away_rank <chr>,
#> # championship_division <chr>, championship_year <chr>,
#> # championship_bracket_round <chr>, championship_championship_id <chr>,
#> # championship_bracket_id <chr>, championship_title <chr>,
#> # championship_sport <chr>, championship_bracket_region <chr>,
#> # tabs_preview <chr>, tabs_boxscore <chr>, tabs_recap <chr>, …
# }