Hello,
I am performing some analysis on defects in open source systems that use
Bugzilla as their defect database. I am trying to extract bug information
from Bugzilla using the REST API.
I started by extracting information for a given bug ID using the following
API
https://bugzilla.mozilla.org/rest/bug/35
https://bugzilla.mozilla.org/rest/bug/35/comment
https://bugzilla.mozilla.org/rest/bug/35/history
After reading the documentation on Wiki, I came to know that I can extract
data for multiple bugs by specifying multiple Bug Ids
e.g.
https://bugzilla.mozilla.org/rest/bug?id=1000&id=1001&id=1002&...
But this only gives me bug info for all the specified bugs and not the
History and comments associated with the bugs.
I would like to know if I can do the same thing to get the History and
Comments data from Bugzilla. Based on documentation, it seems I can get the
comments and history for only a single bug at a time. Is there a way to
extract the History and Comments for for multiple bugs at a time? I would
like this so that it can reduce the number of API calls I make and reduce
the total time.
Thanks,
Sandeep