Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
summary, description, key or issuekey, type or issuetype, status, priority,
components, labels, fixversions, affectsversions, assignee,
reporter, environment

To generate basic access token from username and password:

Code Block
$ python
>>> string = 'username:password'
>>> data = base64.b64encode(string.encode())
>>> print(data)
b'ZGF0YSB0byBiZSBlbmNvZGVk'
>>>
//your basic access token is: ZGF0YSB0byBiZSBlbmNvZGVk

Status
colourBlue
titleStep-4

...