download_bugzilla_rest_issues | R Documentation |
Downloads bugzilla issues into a folder, where each file is a json containing a page of issues.
Returns a list of bugzilla bug ids for use with download_bugzilla_rest_comments
.
download_bugzilla_rest_issues(
bugzilla_site,
start_timestamp,
save_folder_path,
limit_upperbound = 500
)
bugzilla_site |
URL to specific bugzilla site |
start_timestamp |
when to start bug retrieval (ex. 2023-01-01T00:14:57Z) |
save_folder_path |
the full *folder* path where the bugzilla issues will be stored |
limit_upperbound |
the number of issues saved in each page file. Some bugzilla sites have limits set on how many bugs can be retrieved in one GET request, in which case, the limit set by the bugzilla site will be used in place of limit_upperbound to ensure full bug retrieval. |
Note that some bugzilla sites limit the bugs that can retrieved in a single GET request. The limit_upperbound you set to retrieve a number of bugs for each page/file may be greater than the limit set for bug retrieval by the bugzilla site, in which case, this function will adjust the limit accordingly to ensure all bugs are retrieved.
a vector of bug ids
download_bugzilla_rest_comments
a downloader function to download the issue comments
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.