ayowhatthedogdoin
ayowhatthedogdoin

Reputation: 71

How to make a GET request to the Eclipse bugzilla API?

I've been working with the mozilla version of bugzilla, to which i make get requests using the follow url: https://bugzilla.mozilla.org/rest/bug?limit=10&status=NEW&type=defect.

I wanted to do similiar requests but this time to the Eclipse project, which I know also uses bugzilla (just dont know the version, or if that is even relevant) https://bugs.eclipse.org/bugs/, however I can't seem to find the documentation that shows me how to get lists of bugs.

E.g: I do https://bugzilla.mozilla.org/rest/bug?id=1815490 to get a specific bug in the mozilla project, and it works. When I do https://bugs.eclipse.org/rest/bug?id=251041, I get a 404, the same as with other similar URLs. Any ideas?

Upvotes: 0

Views: 121

Answers (1)

howlger
howlger

Reputation: 34135

The base URL is https://bugs.eclipse.org/bugs, not https://bugs.eclipse.org, e.g. https://bugs.eclipse.org/bugs/rest/bug?id=251041

Please be aware that Eclipse Bugzilla is deprecated and many Eclipse projects have migrated to GitHub and some to https://gitlab.eclipse.org/.

Upvotes: 1

Related Questions