Bugzilla-REST

Description

Wrapper for Bugzilla REST API

Details

Source
GitHub
Dialect
pharo (40% confidence)
Stars
2
Created
Nov. 4, 2016
Updated
June 13, 2025
Topics
bugzilla issue-tracker pharo

Categories

Web

README excerpt

# Bugzilla-REST
###### Pharo wrapper for Bugzilla [REST API](https://wiki.mozilla.org/Bugzilla:REST_API) 

## Usage

To start you need access to a bugzilla server

```Smalltalk
BzBugzilla on: 'https://bugzilla.mozilla.org'
```

you can also play around with the example Bugzilla server from mozilla.org

```Smalltalk
BzBugzilla example
```

## Retrieving a bug
```Smalltalk
BzBugzilla example bug: 35
```
returns a new bug with the given bug number.

## Retrieving a user

```Smalltalk
(BzBugzilla example bug: 35) creator
```

← Back to results